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


.content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.head-content{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    gap: 16px;
}

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

.section-title {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.icon-envelope {
    width: 48px;
    height: 48px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.contact-icon-container{
    background: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    align-content: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.075);
}
.heading1 {
    align-self: stretch;
    position: relative;
    letter-spacing: -0.03em;
    line-height: 130%;
}

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

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

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

.email-image{
    width: 45%;
}

.contact-info {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

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

.row {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
    font-size: 32px;
}

.contact-20-breakpoint3 {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 112px 64px;
    box-sizing: border-box;
    gap: 80px;
    text-align: center;
    font-size: 48px;
    color: #000;
    font-family: Inter;
}

.fadeIn {
    opacity: 0;
transition: opacity 2s ease-out; 
}

.fadeIn.visible {
opacity: 1;
}

.y-animation {
    opacity: 0;
transform: translateY(100%);
transition: opacity 1s ease-out, transform 1s ease-out; 

}

.y-animation.visible {
opacity: 1;
transform: translateY(0);

}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .section-title {
        width: 100%;
        padding: 0 0px; /*change to 24px if broken*/
        align-items: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        font-size: 28px;
    }

    .contact-20-breakpoint3 {
        padding: 80px 32px;
        font-size: 40px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .icon-envelope {
        width: 36px;
        height: 36px;
    }

    .text, .link {
        font-size: 14px;
    }

    .contact-20-breakpoint3 {
        padding: 64px 16px;
        font-size: 32px;
        align-items: center;
    }

    .content, .content1, .content2, .contact-info {
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .heading, .heading1 {
        font-size: 24px;
        text-align: center;
    }

    .text, .link {
        font-size: 12px;
        line-height: 140%;
        text-align: center;
    }

    .contact-20-breakpoint3 {
        padding: 48px 16px;
        font-size: 24px;
        align-items: center;
    }

    .row {
        font-size: 20px;
        text-align: center;
    }

    .content, .content1, .content2, .contact-info {
        align-items: center;
        text-align: center;
    }
}
