/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(213, 70%, 25%, 0.8);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.8;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .story-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-img {
        height: 400px;
    }
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mv-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 64px;
    height: 64px;
    background-color: hsla(213, 70%, 25%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.mv-card:nth-child(2) .mv-icon {
    background-color: hsla(45, 85%, 52%, 0.1);
}

.mv-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mv-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    text-align: center;
}

.approach-icon {
    width: 64px;
    height: 64px;
    background-color: hsla(45, 85%, 52%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.approach-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.approach-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Team Section */
.team-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.team-text {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.team-text-light {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
