/* ===== ABOUT PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2942 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--color-text-light);
}

.page-header h1 {
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    color: var(--color-accent);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.about-icon i {
    font-size: 36px;
    color: white;
}

.about-card h3 {
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Core Values */
.core-values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: var(--color-accent);
}

.value-item h3 {
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

/* Why Stanford */
.why-stanford {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-row:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-text h3 {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
    }

    .feature-row:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}