.frame-1 div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 40px 0;
    gap: 64px;
    img {
        width: 315px;
        height: 400px;
    }
    .text {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}
.frame-2 {
    padding: 80px 64px;
    background: var(--Colors-Brand-Canin-200);
    .refuge-content {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }
    .refuge-content>div {
        flex: 1;
    }
    .refuge-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        div {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
    }
    .refuge-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .refuge-grid .step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        position: relative;
    }

    .refuge-grid .step img {
        margin: auto;
    }

    .refuge-grid .step-text {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .refuge-content .step-number-container {
        width: 100%;
        position: relative;
    }

    .refuge-content .refuge-grid:not(:first-child) .step-number {
        background: none;
        border: 2 solid var(--Colors-Brand-Canin-100);
    }

    .refuge-grid .step-number-container::after {
        content: "";
        display: block;
        width: calc(100% - 4rem);
        height: 1px;
        position: absolute;
        right: 0;
        left: 4rem;
        top: 50%;
        transform: translateY(-50%);
        background: var(--Colors-Brand-Canin-900);
    }

    .refuge-grid .step-number {
        width: 3rem;
        height: 3rem;
        display: flex;
        padding: 8px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        background: var(--Colors-Brand-Canin-100);
        color: var(--Colors-Brand-Canin-900);
        font-family: "Young Serif";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
    }

    .square {
        height: 144px;
        width: 144px;
        background-color: var(--Colors-Brand-Canin-100);
        border-radius: 8px;
        margin: auto;
    }
}

.frame-3 div {
    padding: 80px 64px;
    h2 {
        margin-bottom: 24px;
    }
    .list-dons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
        margin-top: 48px;
        padding: 0;
    }
    .don {
        border-top: 1px solid #c0a88d;
        padding: 24px 12px;
    }
    .don-toggle {
        background: none;
        border: none;
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 24px;
        font-weight: 700;
        color: var(--Colors-Brand-Canin-900);
        cursor: pointer;
    }
    .don-toggle .arrow::after {
        content: "▾";
        display: inline-block;
        transition: transform 0.3s ease;
    }
    .don.active .don-toggle .arrow::after {
        transform: rotate(180deg);
    }
    .don-detail {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        transform: translateY(-10px);
        transition: max-height 0.3s ease,
                    opacity 0.3s ease,
                    transform 0.3s ease,
                    margin-top 0.3s ease;
        pointer-events: none;
    }
    .don.active {
        background: var(--Colors-Brand-Canin-100);
        transition: background 0.3s ease;
    }
    .don.active .don-detail {
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 32px;
        pointer-events: auto;
    }
}

.frame-4 {
    position: relative;
    overflow: hidden;
    background-color: var(--Colors-Brand-Coussinet-100);
    padding: 80px 64px;
    div {
        display: flex;
        flex-direction: row;
        gap: 64px;
        justify-content: center;
        .img-forme-rose {
            position: absolute;
            left: 0;
            top: -10%;
            width: 800px;
            height: 1000px;
            z-index: 1;
            pointer-events: none;
        }
        .left {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 40px;
            z-index: 2;
            width: 45%;
            .btn-redirection {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                background: var(--Colors-Brand-Canin-900);
                color: var(--Colors-Brand-Coussinet-200);
                height: 2.75rem;
                padding: 0.5rem 1rem;
                border-radius: 0.5rem;
                font-family: "Young Serif";
                font-size: 1rem;
                font-weight: 400;
                line-height: normal;
                transition: all 0.3s ease;
            }
            .btn-redirection:hover {
                background: var(--Colors-Brand-Canin-800);
            }
        }
        .right {
            position: relative;
            z-index: 2;
            width: 45%;
            .img-porte-cle {
                border-radius: 8px;
            }
        }
    }
}

.frame-5 {
    padding: 80px 64px;
    .div-main {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 48px 32px;
        background: var(--Colors-Brand-Canin-100);
        border: 1px solid var(--Colors-Brand-Canin-700);
        border-radius: 8px;
        gap: 24px;
        min-height: 300px;
        .left {
            display: flex;
            flex-direction: column;
            gap: 24px;
            .hero-cta {
                display: flex;
                flex-direction: row;
                gap: 24px;
                padding: 0;
            }
        }
        .img-benevoles {
            width: 277px;
            height: 277px;
        }
    }
}