/* Page specific styles for About Page */

.about-page-section {
    padding: 80px 0;
    background: white;
}

.about-page-section h2 {
    color: #000000;
    margin-bottom: 20px;
}

.about-page-section h3 {
    color: #000000;
    margin-bottom: 15px;
}

.about-page-section p {
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Hero section for about page */
.hero h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* About section styling */
.about {
    padding: 80px 0;
}

.about-text h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-text h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Stats section */
.stats {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats h2 {
    color: #000000;
}

.stats p.subtitle {
    color: #000000;
}

/* Why Us section */
.why-us {
    padding: 80px 0;
    text-align: center;
}

.why-us h3 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
}
