/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.mission {
    text-align: center;
    margin-bottom: 4rem;
}

.mission h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.values h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    opacity: 0.8;
}