.process {


    .process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        margin: 0 -15px;
    }

    /* Ligne de connexion entre les étapes */
    .process-steps::before {
        content: '';
        position: absolute;
        height: 2px;
        background-color: var(--light-gray);
        top: 120px;
        left: 10%;
        right: 10%;
        z-index: 1;
    }

    .step {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        margin: 0 15px 40px;
        background: var(--white);
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--light-gray);
    }

    .step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .step-number {
        width: 80px;
        height: 80px;
        background-color: var(--black);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
        margin: 0 auto 25px;
        position: relative;
    }

    .step h2 {
        color: var(--black);
        margin-bottom: 20px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .step p {
        color: var(--medium-gray);
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .step-details {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 6px;
        margin: 20px 0;
        border-left: 4px solid var(--dark-gray);
    }

    .step-details p {
        margin-bottom: 10px;
    }

    .step-actions {
        margin-top: 25px;
        text-align: center;
    }

    .btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--black);
        color: var(--white);
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: background-color 0.3s, transform 0.2s;
        border: none;
        cursor: pointer;
    }

    .btn:hover {
        background-color: var(--dark-gray);
        transform: translateY(-2px);
    }

    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .btn:disabled:hover {
        transform: none;
        background-color: var(--black);
    }

    .note {
        background-color: #f5f5f5;
        border-left: 4px solid var(--black);
        padding: 15px;
        margin: 20px 0;
        font-size: 0.9rem;
        color: var(--dark-gray);
    }

    .note strong {
        color: var(--black);
    }

    .contact-methods {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
    }

    .contact-method {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--dark-gray);
    }

    .contact-method a {
        color: var(--dark-gray);
        text-decoration: none;
    }

    .contact-method a:hover {
        color: var(--black);
        text-decoration: underline;
    }

    /* Media Queries pour la responsivité */
    @media (max-width: 1200px) {
        .process-steps::before {
            left: 5%;
            right: 5%;
        }
    }

    @media (max-width: 992px) {
        .process-steps::before {
            display: none;
        }

        .step {
            flex: 0 0 calc(50% - 30px);
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .process-steps {
            flex-direction: column;
            align-items: center;
        }

        .step {
            flex: 0 0 90%;
            margin-bottom: 40px;
        }

        .contact-methods {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .section-title h1 {
            font-size: 2rem !important;
        }
    }

    @media (max-width: 576px) {
        .step {
            flex: 0 0 100%;
            padding: 20px;
            margin: 0 0 30px 0;
        }

        .step-number {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .step h2 {
            font-size: 1.3rem;
        }

        .container {
            padding-left: 15px;
            padding-right: 15px;
        }

        .section-title h1 {
            font-size: 1.8rem !important;
        }
    }
}