/* Custom styles for About Page */
.page-hero-section {
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.overview-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-card h2 {
    font-size: 1.8rem;
    line-height: 1.3;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-overview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 60px 0 40px 0;
    }
    .about-hero-text .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }
    .about-hero-img {
        height: 250px;
    }
    .overview-card {
        padding: 24px 20px;
    }
    .overview-card h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 40px 0 30px 0;
    }
    .about-hero-text .hero-title {
        font-size: 1.6rem;
    }
    .about-hero-img {
        height: 200px;
    }
    .overview-card {
        padding: 20px 16px;
    }
    .stat-num {
        font-size: 1.5rem;
    }
}