
.nav-simple {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.nav-simple a {
    text-decoration: none;
    color: #4caf50;
    font-weight: bold;
}

.about-header {
    background: #fdf2ff; 
    color: #6a1b9a;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 50% 50% / 20px; 
}   
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
}

.about-text {
    max-width: 600px;
}

.section-title {
    text-align: center;
    margin: 40px 0 20px;
    color: #2e7d32;
}


.team-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.avatar {
    font-size: 4rem;
    background: #f1f8e9;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.values {
    display: flex;
    justify-content: space-around;
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
}

.value-item {
    font-size: 1.1rem;
}

.value-item strong {
    display: block;
    font-size: 1.5rem;
}


footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: #999;
}