/* ------------------------------------------ABOUT PAGE SPECIFIC STYLES------------------------------------------ */

.about-banner {
    /* Uses new pathing for images */
    background-image: url('../images/Doctors.webp'); 
    background-size: cover;
    background-position: center;
    height: 40vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-text-light);
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.about-banner h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.mission-section, .milestones-section {
    padding: 80px 5%;
    text-align: center;
}

.mission-section {
    background-color: var(--color-bg-light);
}

.milestones-section {
    background-color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background-color: #ffeef2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card i {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.mission-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-secondary-light);
    margin-bottom: 10px;
}

.mission-card p {
    font-size: var(--font-size-base);
}

.stat-display {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-lg);
    color: #555;
    margin-top: 5px;
}

/* Responsive adjustments for this page */
@media (max-width: 768px) {
    .about-banner {
        height: 30vh;
    }
    .about-banner h1 {
        font-size: 2.5em;
    }
    .stat-display {
        gap: 20px;
    }
    .stat-number {
        font-size: 2.5em;
    }
}