/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 40px auto;
    justify-items: center;
}

.team-member {
    background: rgba(14, 36, 53, 0.6);
    border: 1px solid rgba(86, 176, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(86, 176, 255, 0.3);
    border-color: rgba(86, 176, 255, 0.4);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #56b0ff;
    box-shadow: 0 0 15px rgba(86, 176, 255, 0.4);
}

.team-member h3 {
    color: #56b0ff;
    margin-bottom: 5px;
    font-size: 1.3em;
}

.team-member .role {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-style: italic;
}

.team-member p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #dce3ec;
}

/* Values Section */
.valeurs-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.valeur {
    background: #0e2435;
    border-radius: 12px;
    padding: 30px;
    width: 260px;
    box-shadow: 0 0 15px rgba(86, 176, 255, 0.2);
    transition: all 0.3s ease;
}

.valeur:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(86, 176, 255, 0.3);
}

.valeur h3 {
    color: #56b0ff;
    margin-bottom: 10px;
}

.valeur p {
    font-size: 15px;
    opacity: 0.85;
}