.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.section h2 {
    margin-bottom: 30px;
    color: #003366;       
    font-size: 2.5rem;    
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.top-section h2 {
    margin-top: 60px; 
}

.members-row {
    display: flex;
    justify-content: center;
    gap: 50px; 
    flex-wrap: wrap;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px; 
}

/* Containerul de bază pentru imagine */
.avatar-container {
    position: relative;
    width: 170px;
    height: 170px;
    margin-bottom: 15px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #003366;
    object-fit: cover;
    background-color: #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.role {
    font-weight: 700;
    font-size: 1rem; 
    color: #003366;
    margin-bottom: 5px;
}

.name {
    font-size: 0.95rem; 
    color: #555;
}

.top-section {
    flex: 0 0 60%; 
}

/* --- Responsivitate Top Section --- */
@media (max-width: 900px) {
    body {
        height: auto;
    }
    .top-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 20px 5px; 
    }
    .section h2 {
        font-size: 1.8rem; 
    }
    .top-section h2 {
        margin-top: 60px;  
    }
    .members-row {
        gap: 15px 15px; 
        max-width: 330px; /* Forțează 2 pe rând */
        margin: 0 auto;
    }
    .member {
        width: 150px; 
    }
    .avatar-container {
        width: 145px;
        height: 145px;
    }
}