.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
}
.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}
.about-hero-content .subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 550px;
}
.about-hero-figure img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    max-width: 450px;
    margin: 0 auto;
}

/* --- Missions-Sektion --- */
.mission-section {
    padding: 5rem 2rem;
    background-color: var(--background-section-alt);
    text-align: center;
}
.mission-box {
    max-width: 800px;
    margin: 0 auto;
}
.mission-box h2 {
    margin-bottom: 2rem;
}
.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.mission-box strong {
    color: var(--green-dark);
}

/* --- Team-Sektion --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}
.team-role {
    font-size: 0.9rem;
    color: var(--green-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.team-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1; /* Sorgt für gleiche Höhe bei unterschiedlicher Textlänge */
}

/* --- CTA-Sektion (Partner werden) --- */
.partner-cta-box {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.partner-cta-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.partner-cta-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive Anpassungen --- */
@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-hero-content {
        order: 2;
    }
    .about-hero-figure {
        order: 1;
        margin-bottom: 3rem;
    }
}