body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Disable fadeIn animation on rhis page */
body.no-fade .fadeIn {
    opacity: 1;
    transition: none;
}

body.no-fade .y-animation {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}



.content .name,
.content .heading,
.content .text {
    text-align: left;
}


.heading {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.03em;
    line-height: 120%;
}

.text {
    align-self: stretch;
    position: relative;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 150%;
}

.content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    text-align: center;
    font-size: 48px;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    padding: 40px;
    box-sizing: border-box;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
}

.section-title {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.tagline-wrapper {
    width: 54px;
    height: 24px;
}

.heading {
    align-self: stretch;
    font-size: 48px;
    letter-spacing: -0.03em;
    line-height: 120%;
    margin: 0;
}

.text {
    align-self: stretch;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 133%;
    font-weight: 500;
    color: #3a3a3a;
    margin: 0;
}

.form {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    font-size: 16px;
}

.input {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

textarea{
    padding: 0;
    margin: 0;
}

.name {
    align-self: stretch;
    letter-spacing: -0.03em;
    line-height: 150%;
    font-weight: 600;
}

.text-input {
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #000;
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.text-area {
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #000;
    box-sizing: border-box;
    height: 182px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
    position: relative;
    color: #666;
}

.text-area textarea {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 150%;
    color: #000;
    width: 100%;
    height: 100%;
}

.text-area textarea::placeholder {
    color: #666;
}

.text-area-child {
    width: 2px;
    position: absolute;
    right: 2px;
    bottom: 1.76px;
    height: 2px;
    object-fit: contain;
}

.button{
    cursor: pointer;
}

.text-area-item {
    width: 6px;
    position: absolute;
    right: 2px;
    bottom: 2px;
    height: 6px;
    object-fit: contain;
}

.submit-button {
    border-radius: 50px;
    background: linear-gradient(180deg, #048baa, #12aed2);
    border: 1px solid #1aabcc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    color: #ddf9ff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.button1 {
    letter-spacing: -0.04em;
    font-weight: 600;
}

.image-icon {
    flex: 1;
    border-radius: 4px;
    max-width: 100%;
    height: 734px;
    object-fit: cover;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 500px;
    height: 734px;
    border-radius: 8px;
    overflow: hidden;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 500px;
    height: 734px;
}

.gmap_iframe {
    width: 500px !important;
    height: 734px !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .heading{
        text-align: center;
        font-size: 48px;
    }

    p{
        text-align: center;
    }
    .form {
        align-items: center;
    }

    .image-icon {
        height: auto;
        max-width: 100%;
    }

    .mapouter {
        max-width: 100%;
        padding-bottom: 25%; /* Adjust aspect ratio for smaller screens */
    }
    .submit-button {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .submit-button {
        padding: 6px 16px;
        font-size: 14px;
    }

    .name {
        height: 40px;
        font-size: 14px;
    }

    .text-area textarea {
        font-size: 14px;
    }
}