.hero-content h1 {
    color: var(--orange-wheel);
}

.mission {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission h2 {
    color: var(--space-cadet);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mission-intro p {
    color: var(--english-violet);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    justify-self: center;
}
.value-card h3 {
    color: var(--orange-wheel);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--english-violet);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.team-section {
    padding: 5rem 0;
    background-color: white;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section h2 {
    color: var(--space-cadet);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    gap: 4rem;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-info h3 {
    color: var(--space-cadet);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.member-info h4 {
    color: var(--orange-wheel);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.member-info p {
    color: var(--english-violet);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-image {
        max-width: 300px;
        margin: 0 auto;
    }
}
