/* ===== APROPOS.CSS - STYLES SPÉCIFIQUES PAGE À PROPOS =====
 * Téléphone Rose Belgique - Page À Propos
 */

/* ===== HERO À PROPOS ===== */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.6), rgba(139, 0, 139, 0.6)),
                radial-gradient(circle at 70% 20%, #4a1a4a 0%, #2d1b2d 50%, #000000 100%);
}

.hero-achievements {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    background: rgba(255, 20, 147, 0.15);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.4);
    backdrop-filter: blur(15px);
    min-width: 150px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.achievement-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== NOTRE HISTOIRE ===== */
.our-story {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.1);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    color: #ff1493;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.story-text .lead {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 30px;
    line-height: 1.6;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: justify;
}

.story-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* ===== NOS VALEURS ===== */
.our-values {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(139, 0, 139, 0.05) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 70px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 20, 147, 0.6);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8));
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.value-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== NOTRE ÉQUIPE ===== */
.our-team {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 139, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 20, 147, 0.5);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.7));
}

.team-card h3 {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.team-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.team-specialties {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-specialties span {
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    color: #ff69b4;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

/* ===== NOTRE ENGAGEMENT ===== */
.our-commitment {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08) 0%, rgba(139, 0, 139, 0.08) 100%);
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.commitment-text h2 {
    font-size: 2.8rem;
    color: #ff1493;
    margin-bottom: 40px;
}

.commitment-text h3 {
    font-size: 1.8rem;
    color: #ff69b4;
    margin: 35px 0 20px 0;
    border-left: 4px solid #ff1493;
    padding-left: 20px;
}

.commitment-list {
    list-style: none;
    margin-bottom: 40px;
}

.commitment-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #ff1493;
    font-weight: bold;
    font-size: 1.2rem;
}

.commitment-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.stat-card .stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.2);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.certification-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 139, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 20, 147, 0.5);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.7));
}

.certification-card h3 {
    font-size: 1.6rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.certification-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== TIMELINE ===== */
.timeline {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(139, 0, 139, 0.05) 100%);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 80px auto 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff1493, rgba(255, 20, 147, 0.3));
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.timeline-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    margin: 0 30px;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 30px;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 30px;
    margin-left: 0;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: #ff69b4;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== REJOIGNEZ-NOUS ===== */
.join-us {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.8rem;
    color: #ff1493;
    margin-bottom: 30px;
}

.join-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 60px;
    opacity: 0.9;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.join-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 139, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.join-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 20, 147, 0.5);
}

.join-card h3 {
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.join-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.join-link {
    background: linear-gradient(45deg, #673DE6, #4f46e5);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.join-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certification-card {
        padding: 30px 25px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 25px;
        margin-left: 20px !important;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .join-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .story-text h2 {
        font-size: 2.2rem;
    }
    
    .story-text .lead {
        font-size: 1.2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        font-size: 3rem;
    }
    
    .value-card h3 {
        font-size: 1.7rem;
    }
    
    .team-card {
        padding: 30px 20px;
    }
    
    .team-avatar {
        font-size: 3rem;
    }
    
    .commitment-text h2 {
        font-size: 2.2rem;
    }
    
    .commitment-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .certification-card {
        padding: 25px 20px;
    }
    
    .cert-icon {
        font-size: 2.5rem;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 20px;
        margin-left: 15px !important;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .join-card {
        padding: 30px 20px;
    }
    
    .join-card h3 {
        font-size: 1.7rem;
    }
    
    .join-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS SPÉCIALES ===== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.value-card {
    animation: fadeInScale 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.15s);
}

.team-card {
    animation: bounceIn 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.2s);
}

.timeline-item {
    animation: slideInTimeline 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.3s);
}

.certification-card {
    animation: fadeInScale 0.6s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

/* ===== EFFETS HOVER AVANCÉS ===== */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.value-card:hover::before {
    opacity: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.08), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.team-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(25%, 25%);
}

/* ===== PARALLAX LÉGER ===== */
@media (min-width: 768px) {
    .story-image {
        transform: translateZ(0);
        will-change: transform;
    }
    
    .our-story:hover .story-image {
        transform: scale(1.02) translateY(-5px);
        transition: transform 2s ease;
    }
}

/* ===== MICRO-INTERACTIONS ===== */
.achievement-item {
    cursor: pointer;
}

.achievement-item:active {
    transform: translateY(-3px) scale(0.98);
}

.timeline-year {
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-year:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
}

.commitment-list li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.commitment-list li:hover {
    transform: translateX(10px);
    color: #ff69b4;
    border-color: rgba(255, 20, 147, 0.3);
}

/* ===== STATES FOCUS ===== */
.join-link:focus {
    outline: 3px solid #ff69b4;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 105, 180, 0.3);
}

/* ===== LOADING STATES ===== */
.story-image.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 20, 147, 0.3);
    border-top: 3px solid #ff1493;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== THÈME SOMBRE AMÉLIORÉ ===== */
.dark-theme .value-card,
.dark-theme .team-card,
.dark-theme .certification-card,
.dark-theme .join-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 20, 147, 0.4);
}

.dark-theme .story-image,
.dark-theme .stat-card,
.dark-theme .timeline-content {
    border-color: rgba(255, 20, 147, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== PRINT STYLES ===== */
@media print {
    .value-card,
    .team-card,
    .certification-card,
    .join-card,
    .timeline-content,
    .stat-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .value-icon,
    .team-avatar,
    .cert-icon,
    .timeline-year {
        display: none;
    }
    
    .join-link {
        display: none;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        flex-direction: column;
    }
    
    .timeline-content {
        margin: 0 !important;
    }
}

/* ===== ACCESSIBILITÉ AMÉLIORÉE ===== */
@media (prefers-reduced-motion: reduce) {
    .value-card,
    .team-card,
    .timeline-item,
    .certification-card {
        animation: none !important;
        transition: none !important;
    }
    
    .story-image:hover img,
    .value-card:hover .value-icon,
    .timeline-year:hover {
        transform: none !important;
    }
}

@media (prefers-high-contrast: high) {
    .value-card,
    .team-card,
    .certification-card,
    .join-card,
    .timeline-content,
    .stat-card {
        border-width: 2px !important;
        border-color: #ff1493 !important;
    }
    
    .achievement-item {
        border-width: 3px !important;
        border-color: #ff1493 !important;
    }
}

/* ===== OPTIMISATIONS PERFORMANCE ===== */
.value-card,
.team-card,
.certification-card,
.join-card,
.timeline-content {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===== UTILITAIRES SPÉCIAUX ===== */
.text-gradient {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-pink {
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff1493, #ff69b4) border-box;
}

/* ===== ANIMATIONS AU SCROLL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== EFFETS DE PARTICULES (OPTIONNEL) ===== */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '💖';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatHeart 6s infinite linear;
}

.floating-hearts::before {
    left: 20%;
    animation-delay: -2s;
}

.floating-hearts::after {
    left: 80%;
    animation-delay: -4s;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}hero-achievements {
        gap: 40px;
    }
    
    .story-content,
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0 !important;
        margin-left: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-achievements {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .achievement-item {
        min-width: 200px;
    }
    
    .our-story,
    .our-values,
    .our-team,
    .our-commitment,
    .certifications,
    .timeline,
    .join-us {
        padding: 80px 0;
    }
    
    .story-text h2 {
        font-size: 2.5rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 40px 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        padding: 35px 25px;
    }
    
    .