.contact-section {
    margin-top: 100px;
    padding: var(--spacing-4xl) var(--spacing-5xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--white);
    gap: var(--spacing-md);

    .contact-section-text-1 {
        font-family: var(--font-family);
        font-weight: var(--font-weight-semibold);
        font-size: var(--font-size-5xl);
        line-height: var(--line-height-snug);
        letter-spacing: 2%;
        width: 731px;
        height: 57px;
        color: var(--text-primary);
        margin-bottom: var(--spacing-2xl);
    }

    .email-list-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .email-list-section-text-1 {
        font-family: var(--font-family);
        font-weight: var(--font-weight-regular);
        font-size: var(--font-size-xl);
        line-height: 200%;
        letter-spacing: 2%;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    .email-list-section-text-1:hover {
        color: var(--primary-color);
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-section {
        padding: var(--spacing-4xl) var(--spacing-4xl);
    }
    
    /* .contact-section-text-1 {
        width: 100%;
        max-width: 600px;
    } */
}

@media (max-width: 768px) {
    .contact-section-text-1 {
        width: 100%;
        max-width: 100%;
        height: auto;
        font-size: var(--font-size-4xl);
    }
    
    .email-list-section-text-1 {
        width: auto;
        height: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 64px;
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .contact-section-text-1 {
        font-size: var(--font-size-2xl) !important;
    }
    
    .email-list-section-text-1 {
        font-size: var(--font-size-lg);
    }
}
