.about-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    margin-bottom: 3rem;
}

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

.mission-statement {
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(60, 61, 55, 0.25);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2rem;
    color: #8B5CF6;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(60, 61, 55, 0.25);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content {
        margin-left: 0;
    }

    .container {
        flex-direction: column;
    }

    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}