.csps-course-highlights {
    width: 100%;
}

.csps-course-highlights__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}


.csps-highlight-item {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 244px;
}

.csps-highlight-item__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.csps-highlight-item__heading {
    margin: 0 0 6px;
    font-family: Bebas Neue;
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: #3D3212;
}

.csps-highlight-item__text {
    margin: 0;
    font-size: 14px;
    font-family: Inter;
    line-height: 20px;
    color: rgba(61, 50, 18, 0.72);
    font-weight: 600;
}

.csps-error {
    color: red;
    font-weight: 600;
}
@media (max-width: 1200px) {
    .csps-course-highlights__inner {
        flex-wrap: wrap;
    }
    .csps-highlight-item{
        min-width: 220px;
    }
}
@media (max-width: 767px){
    .csps-course-highlights__inner{
        gap: 0px
        justify-content: space-between;
    }
    .csps-highlight-item{
        min-width: 160px;
    }
}








.csps-course-features {
    max-width: 1062px;
    margin: 0 auto;
    width: 100%;
}

.csps-course-features__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.csps-feature-card {
    position: relative;
    flex: 0 0 33.3333%;
    padding: 20px;
    color: #fff;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.12);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    border-radius: 12px;
    max-width: 350px !important;
}

.csps-feature-card__icon img {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 110px;
}

.csps-feature-card__heading {
    margin: 0 0 8px;
    font-size: 26px;
    font-family: Bebas Neue;
    line-height: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
}

.csps-feature-card__text {
    margin: 0;
    font-family: Inter;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.72);
}

.csps-course-features.cols-1 .csps-feature-card {
    flex: 0 0 100%;
}
.csps-course-features.cols-2 .csps-feature-card {
    flex: 0 0 50%;
}
.csps-course-features.cols-3 .csps-feature-card {
    flex: 0 0 32%;
}
.csps-course-features.cols-4 .csps-feature-card {
    flex: 0 0 25%;
}

@media (max-width: 1024px) {
    .csps-course-features.cols-3 .csps-feature-card,
    .csps-course-features.cols-4 .csps-feature-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .csps-feature-card,
    .csps-course-features.cols-2 .csps-feature-card,
    .csps-course-features.cols-3 .csps-feature-card,
    .csps-course-features.cols-4 .csps-feature-card {
        flex: 0 0 100%;
    }
    .csps-feature-card__icon img{
        margin-bottom: 40px;
    }

    .csps-feature-card {
        min-height: 240px;
    }

    .csps-feature-card__heading {
        font-size: 24px;
    }
    .csps-feature-card {
        max-width: 100% !important;
    }
}














.csps-course-differentiators {
    width: 100%;
    max-width: 1204px;
    margin: 0 auto;
}

.csps-course-differentiators__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.csps-differentiator-card {
    position: relative;
    flex: 0 0 calc(25% - 18px);
    min-height: 490px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.csps-differentiator-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(88, 22, 20, 0.82) 0%,
        rgba(88, 22, 20, 0.48) 35%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 1;
}

.csps-differentiator-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px;
    text-align: center;
}

.csps-differentiator-card__heading {
    color: rgba(248, 247, 244, 1);
    font-size: 26px;
    font-family: Bebas Neue;
    line-height: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.csps-differentiator-card__text {
    margin: 0;
    color: rgba(248, 247, 244, 0.72);
    font-size: 14px;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
}

.csps-course-differentiators.cols-1 .csps-differentiator-card {
    flex: 0 0 100%;
}
.csps-course-differentiators.cols-2 .csps-differentiator-card {
    flex: 0 0 calc(50% - 6px);
}
.csps-course-differentiators.cols-3 .csps-differentiator-card {
    flex: 0 0 calc(33.333% - 12px);
}
.csps-course-differentiators.cols-4 .csps-differentiator-card {
    flex: 0 0 calc(25% - 18px);
}

@media (max-width: 1024px) {
    .csps-course-differentiators.cols-4 .csps-differentiator-card,
    .csps-course-differentiators.cols-3 .csps-differentiator-card {
        flex: 0 0 calc(50% - 6px);
    }
}

@media (max-width: 767px) {
    .csps-course-differentiators__inner {
        gap: 12px;
    }

    .csps-differentiator-card,
    .csps-course-differentiators.cols-2 .csps-differentiator-card,
    .csps-course-differentiators.cols-3 .csps-differentiator-card,
    .csps-course-differentiators.cols-4 .csps-differentiator-card {
        flex: 0 0 100%;
    }

    .csps-differentiator-card {
        min-height: 350px;
    }

    .csps-differentiator-card__heading {
        font-size: 24px;
    }
    .csps-differentiator-card__content{
        padding: 18px;
    }
}





.csps-points-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.csps-points-list__item {
    position: relative;
    font-family: Inter;
    font-weight: 600;
    padding-left: 14px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height:20px;
    color: rgba(255, 255, 255, 0.72);
}

.csps-points-list__item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #dfe9d8;
    font-size: 14px;
    line-height: 1.45;
}







.csps-faqs {
    width: 100%;
}

.csps-faq-item {
    background: #F8F7F4;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.csps-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
    color: #3D3212;
    font-weight: 500;
    font-family: Inter;
}

.csps-faq-question:hover, .csps-faq-question:focus{
    background: transparent;
    color: #3D3212;
}

.csps-faq-question__text {
    display: block;
    flex: 1;
}

.csps-faq-question__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.csps-faq-question__icon svg {
    width: 16px;
    height: 16px;
    fill: #4b3b2b;
    transform: rotate(-90deg);
    transition: transform 0.35s ease;
}

/* rotate when open */

.csps-faq-item.is-open .csps-faq-question__icon svg {
    transform: rotate(0deg);
}

.csps-faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.csps-faq-answer {
    padding: 24px;
    text-align: start;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #383838;
}

.csps-faq-answer p:last-child {
    margin-bottom: 0;
}

/*.csps-faq-item.is-open .csps-faq-question {*/
/*    padding-bottom: 12px;*/
/*}*/

@media (max-width: 767px) {
    .csps-faq-question {
        padding: 18px;
    }

    .csps-faq-answer {
        padding: 18px;
    }
}







.csps-course-departures {
    color: #fff;
}

.csps-course-departures__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.csps-course-departures__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
}

.csps-course-departures__icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 1);
    display: block;
}

.csps-course-departures__title {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-family: Inter;
    color: rgba(255, 255, 255, 0.72);
}

.csps-course-departures__list {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.csps-course-departures__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.csps-course-departures__date {
    font-size: 14px;
    line-height: 20px;
    font-family: Inter;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.csps-course-departures__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    font-family: Inter;
    white-space: nowrap;
}

.csps-course-departures__badge.available {
    background: #F8F7F414;
    color: #fff;
}

.csps-course-departures__badge.limited {
    background: #CA8A04;
    color: #fff;
}

.csps-course-departures__badge.soldout {
    background: #EF4444;
    color: #fff;
}

@media (max-width: 767px) {
    .csps-course-departures__row {
        gap: 12px;
    }
    .csps-course-departures__row{
        padding: 14px 10px;
    }

    .csps-course-departures__badge {
        font-size: 13px;
        padding: 6px 10px;
    }
}




.csps-content-sections {
    width: 100%;
}

.csps-content-section-item {
    background: #efede8;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.csps-content-section-header {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
    color: #3D3212;
    font-weight: 500;
    font-family: Inter;
}

.csps-content-section-header__text {
    flex: 1;
    display: block;
}
.csps-content-section-header:hover, .csps-content-section-header:focus{
    background: transparent;
    color: #3D3212;
}
.csps-content-section-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.csps-content-section-header__icon svg {
    width: 16px;
    height: 16px;
    fill: #4b3b2b;
    transform: rotate(-90deg);
    transition: transform 0.35s ease;
}

.csps-content-section-item.is-open .csps-content-section-header__icon svg {
    transform: rotate(0deg);
}

.csps-content-section-body-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.csps-content-section-body {
    padding: 24px;
}

.csps-content-section-item.is-open .csps-content-section-body {
    padding-top: 0;
}

.csps-content-section-text,
.csps-content-section-text p {
    color: #8b7e58;
    font-size: 16px;
    line-height: 1.7;
}
.csps-content-section-body p{
    text-align: start;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #383838;
    margin: 0px;
}


.csps-content-section-text p:last-child {
    margin-bottom: 0;
}

/* Itinerary */
.csps-itinerary-timeline {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 10px 0 8px;
}

.csps-itinerary-item {
    position: relative;
    padding: 15px 0;
}

.csps-itinerary-item__row {
    display: grid;
    grid-template-columns: 90px 50px 1fr;
    align-items: flex-start;
    position: relative;
}

.csps-itinerary-item__day {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    font-family: Bebas Neue, Sans-Serif;
}

.csps-itinerary-item__middle {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 40px;
}

.csps-itinerary-item__connector {
    position: absolute;
    width: 32px;
    height: 2px;
    background: #8b7e58;
    left: 24px;
    top: 9px;
}

.csps-itinerary-item__middle::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 18px;
    width: 2px;
    background: #8b7e58;
    height: calc(100% + 30px);
}

.csps-itinerary-item__middle::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #8b7e58;
    border-radius: 50%;
    left: 13px;
    top: 3px;
    z-index: 2;
}

.csps-itinerary-item:last-child .csps-itinerary-item__middle::before {
    content: none;
}

.csps-itinerary-item__content {
    padding-left: 16px;
    color: #383838;
    font-size: 16px;
    line-height: 1.7;
}

.csps-itinerary-item__content p {
    margin: 0;
    color: #383838;
}

@media (max-width: 767px) {
    .csps-content-section-header {
        padding: 18px;
    }

    .csps-content-section-body {
        padding: 18px;
    }

    .csps-itinerary-item__row {
        grid-template-columns: 74px 34px 1fr;
    }

    .csps-itinerary-item__connector {
        width: 18px;
        left: 18px;
    }

    .csps-itinerary-item__middle::before {
        left: 12px;
    }

    .csps-itinerary-item__middle::after {
        left: 7px;
    }

    .csps-itinerary-item__content {
        padding-left: 10px;
        font-size: 14px;
    }
}