.steps-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
   
    gap: 64px;
    img{
        flex: 0 1 35%;
        background-color: var(--Colors-Brand-Canin-100);
        border-radius: 16px;
    }
    .content-text{
        flex: 0 1 65%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: flex-start;
        align-items: flex-start;
    }
}


.frame-4 {
    position: relative;
    overflow: hidden;
    background-color: var(--Colors-Brand-Coussinet-200);
    padding: 80px 64px;

    .content-steps{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items:flex-end;
        position: relative;
        z-index: 1;
        .content-title{
            flex: 0 1 58%;
        }
    
        .content-text{
            flex: 0 1 40%;  
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: space-between;
            align-items:flex-start;
            position: relative;
        }
    }

    .img-forme-rose {
        position: absolute;
        left: 0;
        top: -10%;
        width: 800px;
        height: 1000px;
        z-index: 0;
        pointer-events: none;
    }
    .title {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 64px;
        z-index: 2;
    }
    .list-cards {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 24px;
        z-index: 2;
        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 32px 16px;
            border-radius: 8px;
            width: calc(50% - 12px);
            text-align: center;
            img {
                width: 175px;
                height: 175px;
                margin-bottom: 24px;
            }
            h6 {
                font-weight: 700;
                margin-bottom: 16px;
            }
            p {
                color: var(--Colors-Brand-Canin-900);
                margin-bottom: 16px;
            }
            &.brown {
                background-color: var(--Colors-Brand-Canin-100);
                border: 1px solid var(--Colors-Brand-Canin-700);
            }
            &.pink {
                background-color: var(--Colors-Brand-Coussinet-100);
                border: 1px solid var(--Colors-Brand-Coussinet-600);
                h6 {
                    color: var(--Colors-Brand-Coussinet-600);
                }
            }
        }
    }
}


.num-urg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  
  /* Colonne gauche */
  .left-content {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .left-content h2 {
    font-size: 2.5rem;
    color: #3f2c1c;
  }
  
  .left-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .left-content .cta-item {
    align-self: flex-start;
  }
  
  /* Colonne droite avec les cartes */
  .right-content {
    flex: 1 1 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
  }
  
  .card {
    background-color: #f5e5d1;
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1 1 calc(50% - 0.75rem); /* 2 cartes côte à côte */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
  }
  
  .card h6 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3f2c1c;
  }
  
  .card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .card img {
    width: 100%;
    height: 120px;
    background: #e3ccb0;
    border-radius: 6px;
  }