/* ======================================================== */
/* ==== STYLES FOR ABOUT PAGE (about.css) ==== */
/* ======================================================== */

.about-wrapper {
    padding: 3rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

section {
    margin-bottom: 4rem;
}
section:last-child {
    margin-bottom: 0;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}
section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.story-section p {
    text-align: left; /* Story is better left-aligned */
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    text-align: center;
    background: var(--input-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}
.value-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Connect Section */
.connect-section {
    background: var(--input-bg);
    border-radius: 15px;
    padding: 2.5rem;
}