@import url('theme.css');

.about-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-section {
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-card {
    background: var(--color-dark-gray);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-align: center;
}

.team-section {
    margin-top: 2.5rem;
}

.department {
    margin-bottom: 3rem;
}

.department-title {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background: var(--color-dark-gray);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-align: center;
}

.team-member h3 {
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.3rem;
    color: var(--color-gold);
}

.team-member p {
    margin: 0;
}

.team-photo {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.team-role {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 600;
}