.about-content-section {
    padding: 4rem 0;
}

.about-story {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.about-story p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.philosophy-item {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.philosophy-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* --- ADDED FOR CONSISTENCY --- */
/* Final CTA Section */
.cta-section {
    background-color: var(--surface-color);
    padding: 5rem 0;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-top: 0;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 2rem;
}