/* ===================================
   About Us - Section Headers (Enhanced Typography)
   Minimalist design with improved typography only
   ================================ */

/* ===================================
   Enhanced Section Title
   ================================ */

.section-title-enhanced {
    font-size: 2.2rem;
    font-weight: 700;
    color: #183544;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    margin-top: 0;
    text-align: center;
    opacity: 0;
    animation: fadeInTitle 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

/* Animation */
@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   ================================ */

/* Tablet */
@media (max-width: 768px) {
    .section-title-enhanced {
        font-size: 2rem;
        letter-spacing: -0.3px;
        margin-bottom: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .section-title-enhanced {
        font-size: 1.75rem;
        letter-spacing: 0;
        margin-bottom: 1.5rem;
    }
}

/* ===================================
   Additional Content Spacing
   (for sections with subtitles/paragraphs)
   ================================ */

.section-header-content {
    margin-bottom: 3rem;
}

.section-header-content .section-title-enhanced {
    margin-bottom: 1.5rem;
}

.section-header-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInTitle 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.section-header-content p.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    opacity: 0;
    animation: fadeInTitle 0.6s ease-out forwards;
    animation-delay: 0.5s;
}

.section-header-content p {
    line-height: 1.6;
    color: #666;
    opacity: 0;
    animation: fadeInTitle 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

/* Responsive for content sections */
@media (max-width: 768px) {
    .section-header-content {
        margin-bottom: 2rem;
    }
    
    .section-header-content h4 {
        font-size: 1.1rem;
    }
    
    .section-header-content p.lead {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header-content {
        margin-bottom: 1.5rem;
    }
    
    .section-header-content h4 {
        font-size: 1rem;
    }
    
    .section-header-content p.lead {
        font-size: 0.95rem;
    }
}
