/* css/about.css */
.about-hero {
    background-color: var(--neutral-light); /* Or an image if you prefer */
    padding: var(--padding-large) 0;
    border-bottom: 1px solid var(--neutral-medium);
}

.about-hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
}

.about-hero .lead {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    color: var(--neutral-dark);
}

.our-approach {
    padding: var(--padding-large) 0;
}

.our-approach h2 {
    margin-bottom: 2.5rem;
}

.approach-items.grid-cols-3 {
    gap: 30px; /* Adjust gap */
}

.approach-item {
    background-color: var(--white-space);
    padding: var(--padding-standard);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    text-align: left; /* Content within items left-aligned */
}

.approach-item .approach-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: var(--padding-standard);
}

.approach-item h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
}
.approach-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}


.our-story {
    /* Uses .section-highlight */
}
.our-story h2 {
    margin-bottom: 1rem;
}
.story-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.meet-the-team {
    padding: var(--padding-large) 0;
}
.meet-the-team .lead {
    margin-bottom: 2rem;
}
.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow-light);
}
.team-member h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.team-member p {
    font-size: 0.9rem;
    color: var(--neutral-dark);
}

@media (max-width: 992px) {
    .approach-items.grid-cols-3 { grid-template-columns: 1fr; } /* Stack approach items */
    .our-story .d-grid.grid-cols-2 { grid-template-columns: 1fr; text-align: center;}
    .our-story .story-image { margin-top: 20px; }
}
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.4rem; }
    .meet-the-team .team-members.grid-cols-3 { grid-template-columns: 1fr; }
}