.about-main { padding: 4rem 0; }

.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}
.about-intro h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.lead-text { font-size: 1.2rem; color: var(--text-secondary); }

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 5rem;
}
.stat-item h3 { font-size: 2.5rem; color: var(--color-primary); }
.stat-item p { color: var(--text-secondary); font-weight: 500; }

/* Values Section */
.values-section { margin-bottom: 5rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.value-card i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1.5rem; }
.value-card h3 { margin-bottom: 1rem; }

/* Journey Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border: 3px solid var(--bg-primary);
    top: 24px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-content {
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
@media (max-width: 768px) {
    .timeline::after { left: 15px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 1rem; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-dot { left: 7px; }
}

/* Mission Section */
.mission-content {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 5rem;
}
.mission-content h2 { margin-bottom: 1rem; }

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 4rem 0;
}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }