/* about.css */

main {
    padding-top: 80px;
}

/* Hero banner on top of about page */
.page-hero {
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8)),
                url('about-hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Main content */
.about-content {
    padding: 40px 0 80px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card h2 {
    color: #004d40;
    margin-bottom: 1.2rem;
}

.history, .team {
    margin-bottom: 60px;
}

.history h2, .team h2, .values h2 {
    color: #004d40;
    text-align: center;
    margin-bottom: 1.8rem;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    text-align: center;
}

.value-item {
    background: #004d40;
    color: white;
    padding: 20px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA at bottom */
.cta-section {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.cta-section h2 {
    margin-bottom: 1.2rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 2.4rem;
    }
}

