.contact-page {
        padding: 3rem 5%;
        max-width: 1400px;
        margin: 0 auto;
        min-height: calc(100vh - 200px);
    }

    /* Hero Section */
    .contact-hero {
        text-align: center;
        margin-bottom: 4rem;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 24px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: movePattern 20s linear infinite;
    }

    @keyframes movePattern {
        0% { transform: translate(0, 0); }
        100% { transform: translate(40px, 40px); }
    }

    .contact-hero-content {
        position: relative;
        z-index: 1;
    }

    .contact-hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .contact-hero p {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        color: var(--text-color);
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Team Grid */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .team-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    }

    .team-card-header {
        position: relative;
        height: 200px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .team-card-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 10%, transparent 10%);
        background-size: 30px 30px;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 5px solid white;
        object-fit: cover;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .team-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary-color);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .team-card-body {
        padding: 2rem;
        text-align: center;
    }

    .team-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.5rem;
    }

    .team-role {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .team-country {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--light-color);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    .team-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #f0f0f0;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem;
        background: var(--light-color);
        border-radius: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--text-color);
    }

    .contact-item:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-item:hover .contact-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .contact-text {
        text-align: left;
        flex: 1;
    }

    .contact-label {
        font-size: 0.75rem;
        opacity: 0.8;
        display: block;
    }

    .contact-value {
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* General Contact Section */
    .general-contact {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        margin-bottom: 3rem;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-method {
        text-align: center;
        padding: 2rem;
        background: var(--light-color);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .contact-method:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .method-icon {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .contact-method:hover .method-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .method-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .method-value {
        font-size: 1rem;
        opacity: 0.9;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--light-color);
        border-radius: 20px;
        margin: 2rem 0;
    }

    .empty-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

    .empty-title {
        font-size: 1.5rem;
        color: var(--text-light);
        margin-bottom: 0.5rem;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
        .contact-page {
            padding: 2rem 3%;
        }

        .contact-hero {
            padding: 2rem 1.5rem;
            margin-bottom: 3rem;
        }

        .team-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .general-contact {
            padding: 2rem 1.5rem;
        }

        .contact-methods {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 480px) {
        .team-card-body {
            padding: 1.5rem;
        }

        .team-avatar {
            width: 100px;
            height: 100px;
        }
    }

    /* Animation d'entrée */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .team-card {
        animation: fadeInUp 0.6s ease backwards;
    }

    .team-card:nth-child(1) { animation-delay: 0.1s; }
    .team-card:nth-child(2) { animation-delay: 0.2s; }
    .team-card:nth-child(3) { animation-delay: 0.3s; }
    .team-card:nth-child(4) { animation-delay: 0.4s; }
    .team-card:nth-child(5) { animation-delay: 0.5s; }
    .team-card:nth-child(6) { animation-delay: 0.6s; }