/* --- About Page Specific --- */
.about-hero {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 80px; /* Offset for fixed header */
}
.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text);
}

.founder-section {
    padding: 6rem 0;
    background-color: white;
}
.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.founder-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.founder-bio h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.team-member {
    text-align: center;
    width: 280px;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}
.team-member .role {
    color: var(--color-primary);
    font-weight: 600;
}