.bloc-notation {
    background-color: #FBFBFD;
    border: 1px solid #D0D5D0;
    border-radius: 20px;
    margin: 50px 0;
}

.bloc-notation h2 {
    /* color: #0F2D10;
    font-size: 42px; */
    margin-bottom: 30px;
    text-align: left;
    padding: 50px 75px 0 75px;
}

.bloc-notation .subnav {
    border-bottom: 1px solid #DADEDD;
    margin-bottom: 30px;
    padding: 0 75px 10px 75px;
}

.bloc-notation .subnav ul {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.bloc-notation .subnav li {
    list-style: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bloc-notation .subnav li.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0F2D10;
    transition: all 0.3s ease;
}

.bloc-notation .subnav li img {
    width: 120px;
    height: auto;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.bloc-notation .subnav li.active img {
    opacity: 1;
    transition: all 0.3s ease;
}

.bloc-notation .subnav li:not(.active):hover img {
    transform: translateY(-5px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.bloc-notation .content {
    display: none;
    padding: 0 75px 50px 75px;
}

.bloc-notation .content.active {
    display: block;
}

.bloc-notation .content-header {
    text-align: left;
    margin-bottom: 30px;
}

.bloc-notation .content-header h3 {
    /* color: #0F2D10;
    font-size: 24px; */
    margin-bottom: 10px;
}

.bloc-notation .content-header p.subtitle {
    color: #909090;
    margin-bottom: 15px;
}

.bloc-notation .content-header .rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.bloc-notation .content-header .rating .stars {
    display: flex;
    gap: 2px;
}

.bloc-notation .content-header .rating .stars img {
    width: 16px;
    height: 16px;
}

.bloc-notation .content-header .rating .note {
    color: #0F2D10;
    font-weight: bold;
    font-family: 'Jeko Extrabold', sans-serif;
}

.bloc-notation .content-header .rating .reviews {
    color: #909090;
    font-family: 'IBM Plex Sans', sans-serif;
}

.bloc-notation .reviews-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bloc-notation .review-card {
    background-color: #F8F8F8;
    border: 1px solid #D0D5D0;
    border-radius: 12px;
    padding: 20px;
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
}

.bloc-notation .content.active .review-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.bloc-notation .content.active .review-card:nth-child(2) {
    animation-delay: 0.1s;
}

.bloc-notation .content.active .review-card:nth-child(3) {
    animation-delay: 0.2s;
}

.bloc-notation .review-card .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.bloc-notation .review-card .stars img {
    width: 14px;
    height: 14px;
}

.bloc-notation .review-card .reviewer {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #909090;
    font-family: 'IBM Plex Sans', sans-serif;
    flex-wrap: wrap;
}

.bloc-notation .review-card .reviewer .date {
    color: #909090;
    white-space: nowrap;
    display: none;
}

.bloc-notation .review-card .review-text {
    color: #0F2D10;
    line-height: 1.5;
}

/* Responsive pour le bloc notation */
@media (max-width: 1200px) {
    .bloc-notation {
        margin: 40px 0px;
    }

    .bloc-notation h2,
    .bloc-notation .subnav,
    .bloc-notation .content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .bloc-notation h2 {
        /* font-size: 32px; */
    }

    .bloc-notation .content-header h3 {
        /* font-size: 22px; */
    }
}

@media (max-width: 1000px) {
    .bloc-notation {
        margin: 30px 0px;
    }

    .bloc-notation h2,
    .bloc-notation .subnav,
    .bloc-notation .content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .bloc-notation h2 {
        /* font-size: 28px; */
    }

    .bloc-notation .content-header h3 {
        /* font-size: 20px; */
    }

    .bloc-notation .review-card .review-text {
        font-size: 14px;
    }
}

@media (max-width: 800px) {
    .bloc-notation {
        margin: 20px 0px;
    }

    .bloc-notation h2,
    .bloc-notation .subnav,
    .bloc-notation .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bloc-notation .reviews-carousel {
        flex-direction: column;
        gap: 15px;
    }

    .bloc-notation .review-card {
        width: 100%;
    }

    .bloc-notation h2 {
        /* font-size: 24px; */
    }

    .bloc-notation .content-header h3 {
        /* font-size: 18px; */
    }

    .bloc-notation .content-header .rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .bloc-notation .content-header .rating .stars {
        margin-bottom: 5px;
    }

    .bloc-notation .content-header .rating .note,
    .bloc-notation .content-header .rating .reviews {
        font-size: 14px;
    }

    .bloc-notation .subnav ul {
        gap: 20px;
    }

    .bloc-notation .subnav li img {
        width: 100px;
    }
}

@media (max-width: 500px) {
    .bloc-notation {
        margin: 15px 0px;
    }

    .bloc-notation h2,
    .bloc-notation .subnav,
    .bloc-notation .content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bloc-notation h2 {
        /* font-size: 22px; */
        padding-top: 30px;
    }

    .bloc-notation .content-header h3 {
        font-size: 16px;
    }

    .bloc-notation .review-card {
        padding: 12px;
    }

    .bloc-notation .review-card .review-text {
        font-size: 13px;
    }

    .bloc-notation .review-card .reviewer {
        font-size: 12px;
    }

    .bloc-notation .subnav li img {
        width: 80px;
    }

    .bloc-notation .content {
        padding-bottom: 30px;
    }
}

@media (max-width: 280px) {
    .bloc-notation {
        margin: 10px 0px;
    }

    .bloc-notation h2,
    .bloc-notation .subnav,
    .bloc-notation .content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .bloc-notation .subnav ul {
        gap: 8px;
    }

    .bloc-notation .subnav li img {
        width: 60px;
    }

    .bloc-notation .content-header h3 {
        /* font-size: 14px; */
    }

    .bloc-notation .review-card {
        padding: 8px;
    }

    .bloc-notation .review-card .review-text {
        font-size: 11px;
    }

    .bloc-notation .review-card .reviewer {
        font-size: 10px;
    }
}