.contact-image-section {
    background-color: #F5F0E6;
    padding: 3rem 1rem 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.contact-header-section {
    color: #442b20;
    padding: 4rem 1rem 2rem 1rem;
    background-color: #F5F0E6;
    text-align: center;
}

.contact-heading {
    font-family: "Philosopher", sans-serif;
    font-size: 3rem;
    color: #442b20;
}

.contact-direct-section {
    background-color: #F5F0E6;
    padding: 2rem;
    text-align: center;
}

.contact-subheading {
    font-family: "Philosopher", sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #442b20;
}

.contact-text {
    font-family: "Xanh Mono", sans-serif;
    font-size: 1.1rem;
    color: #442b20;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-family: "Xanh Mono", sans-serif;
    font-size: 1rem;
    color: #442b20;
    line-height: 2;
}

.socials-section {
    background-color: #C4B6D2;
    padding: 3rem 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    transform: scale(1.05);
    filter: brightness(1) invert(0.2);
}

.email{
    font-size: 2rem;
    color: #C4B6D2;
    text-decoration: none;
}

.email a {
    font-size: 2rem;
    color: #C4B6D2;
    text-decoration: none;
}


.email a:visited {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .contact-image-section {
        padding: 2rem 2.5rem 1rem;
    }

    .contact-header-section {
        padding: 2rem 2.5rem 1rem;
    }
    
    .contact-direct-section {
        padding: 2rem 0.5rem;
    }

    .contact-heading {
        font-size: 2.5rem;
    }

    .contact-subheading {
        font-size: 1.5rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .email {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }
}