/* About Section Styles - Uses Global Section Badge */
.about-section {
    padding: 2rem 0 !important;
    background: #ffffff !important;
    position: relative;
    margin: 0 !important;
}

/* Override enhanced-about styles */
.about-section.enhanced-about {
    padding: 2rem 0 !important;
    background: #ffffff !important;
    margin: 0 !important;
}

/* Remove any pseudo-elements that might add spacing */
.about-section::before,
.about-section::after {
    display: none !important;
    content: none !important;
}

/* Simple section header - uses global styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Section badge - uses global section-badges.css styles */
/* No local overrides needed - section-badges.css handles everything */

/* Simple section title */
.section-title {
    color: #1B4332;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 1rem;
}

/* Simple about content */
.about-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    margin: 0 !important;
}

/* Simple about text */
.about-text {
    padding: 1.5rem;
}

/* Simple about title */
.about-title {
    color: #1B4332;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Simple about description */
.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Simple video ratio */
.about-video .ratio {
    width: 100%;
    height: auto;
    border: 1px solid #e5e7eb;
}




/* Mobile responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 1rem 0 !important;
    }
    
    .about-section.enhanced-about {
        padding: 1rem 0 !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-text {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.25rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
}

/* Override all inline styles and animations */
.section-header,
.section-title,
.about-content,
.about-text,
.about-title,
.about-description {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
} 