/* --- New Styles for About Us Page --- */

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* About Hero */
.about-hero {
    padding: 60px 20px;
    background-color: var(--surface-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--heading-color);
    margin: 0;
}

.about-hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 10px;
}

/* Mission/Vision */
.mission-vision-section {
    padding: 80px 0;
}

.text-block h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left; /* Override default center */
}

/* === NEW: Stats Section === */
.stats-section {
    padding: 80px 0;
    background-color: var(--heading-color);
    color: white;
}
.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.stat-item h3 {
    font-size: 2.5rem;
    margin: 0 0 5px 0;
}
.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* === NEW: Process Section === */
.process-section {
    padding: 80px 0;
}
.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 60px;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    padding: 20px 0;
}
.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.process-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 0 4px var(--primary-color);
}
.process-step h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.process-step p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Core Values */
.core-values-section {
    background-color: var(--surface-color);
    padding: 80px 0;
}
.core-values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 60px;
}

/* === NEW: Team Section === */
.team-section {
    padding: 80px 0;
}
.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 60px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.team-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 34, 68, 0.1);
}
.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
    background-color: #eee; /* Placeholder bg */
}
.team-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin: 0 0 5px 0;
}
.team-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.team-bio {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--surface-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid,
    .process-timeline,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .text-block h2 {
        font-size: 1.8rem;
    }

    .stats-grid,
    .process-timeline,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .stats-section h2, .process-section h2, .team-section h2, .core-values-section h2, .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .stats-item h3 {
        font-size: 2rem;
    }
    .process-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }
    .team-photo {
        width: 120px;
        height: 120px;
    }
}