/*
========================================
    === Membership Price Table ===
========================================
*/
.price-table {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 0 1rem;
    box-sizing: border-box;
}

.desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

.price-table__thead th {
    box-shadow: 0 2px 2px rgba(0,0,0,0.05);
    background: #fff;
    border: none;
    border-right: 1px solid black;
}

.price-table__thead th:last-child {
    border-right: none;
}

/* Header Row 1 styling */
.price-table__header-row-1 th {
    background-color: #CECECE;
    padding: 0.5rem 1rem;
    vertical-align: middle;
    text-align: left;
    border-bottom: none; /* No border between row 1 and the new row 2 */
}

.plan-name {
    font-size: 33px;
    font-weight: 700;
}

.plan-subtitle {
    font-size: 20px;
    font-weight: 700;
}

/* Header Row 1, Column 3 (Recommended badge cell) specific background */
.price-table__header-row-1 th:nth-child(3) {
    background-color: #6ebc9d;
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    padding: 0.5rem 1rem;
}

/* New header rows for split content (previously row 2) */
.price-table__header-row-name-subtitle th,
.price-table__header-row-description th,
.price-table__header-row-button th {
    background-color: #FFFFFF; /* Default for these three rows */
    padding: 0.5rem 1rem; /* Adjust padding for a tighter look */
    vertical-align: top;
    text-align: left;
    border-bottom: none; /* No internal borders between these split rows */
}

/* Apply specific background for Column 3 in these split rows */
.price-table__header-row-name-subtitle th:nth-child(3),
.price-table__header-row-description th:nth-child(3),
.price-table__header-row-button th:nth-child(3) {
    background-color: #add9c7;
}

/* Ensure only the LAST of these three rows has the 2px border on its bottom */
.price-table__header-row-button th {
    border-bottom: 2px solid black;
}

/* Remove default padding from price-table__head as content is direct in th */
.price-table__head {
    /* This class might not be used anymore in these split header rows,
       but keeping it defined in case it's inherited or used elsewhere. */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Adjustments for content within the new header cells */
.price-table__plan {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0; /* No margin as content is now individually rowed */
    display: block; /* Ensure it takes full width */
}

.price-table__plan small {
    font-weight: normal;
    font-size: 0.85rem;
    display: block;
}

.price-table__recommended-for-header {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    font-weight: 500;
}

.price-table__button {
    margin-top: 0; /* Remove top margin for buttons in their own row */
}


/* Table Styles */
.price-table__wrapper {
    overflow-x: auto;
}

.price-table__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: none;
}

.price-table__table td {
    padding: 1rem;
    text-align: left;
    vertical-align: top;
    border: none;
    border-right: 1px solid black;
    border-top: none;
    border-bottom: none;
    word-wrap: break-word;
}

.price-table__row-header {
    font-size: 20px;
    font-weight: 700;
}

.price-table__row-subheader {
    font-size: 20px;
    font-weight: 400;
}

.price-table__price {
    font-size: 20px;
    font-weight: 400;
}

.price-table__table td.price-table__centered-cell {
    text-align: center;
}

.price-table__table td:last-child {
    border-right: none;
}

.price-table__table tbody tr:first-child td {
    border-top: 2px solid black;
}

/* Data Rows (tbody) - Odd rows */
.price-table__table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}
.price-table__table tbody tr:nth-child(odd) td:nth-child(3) {
    background-color: #add9c7;
}

/* Data Rows (tbody) - Even rows */
.price-table__table tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}
.price-table__table tbody tr:nth-child(even) td:nth-child(3) {
    background-color: #a7d3c1;
}

/* Mobile Swiper */
.price-table__mobile {
    padding-bottom: 30px;
}

.price-table__mobile-slide {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #000;
}

.price-table__sticky-head {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 1rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #000;
    min-height: 240px;
}

.price-table__recommended-for {
    font-size: 0.9em;
    margin-top: 0.5rem;
    line-height: 1.3;
    min-height: 40px;
}

.price-table__list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.price-table__list li {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 20px;
}

.price-table__list li:nth-child(odd) {
    background-color: #ffffff;
}

.price-table__list li:nth-child(even) {
    background-color: #f0f0f0;
}

.price-table__list li strong {
    min-width: 80px;
    display: inline-block;
}

.price-table__apply-button-mobile {
    text-align: center;
    padding-bottom: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.price-table__note {
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.3;
}

.price-table__button {
    background: #d33c33;
    color: #fff;
    padding: 0.5rem 3rem;
    border: 2px solid #d33c33;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    white-space: nowrap;
}

.price-table__button:hover {
    color: #d33c33;
    background-color: #fff;
}

.feature-check {
    font-weight: bold;
    font-size: 23px;
    margin-right: 5px;
    line-height: 1;
    font-family: initial;
}

.feature-cross {
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 5px;
    line-height: 1;
    white-space: nowrap;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #47be9b;
}

.price-table__badge-container {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-table__badge {
    background-color: #6ebc9d;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
}

.price-table__list__title {
    margin-right: 8px;
    font-weight: 700;
}

.price-table__list__feature span {
    display: inline-block;
    margin-right: 8px;
}

.price-table__col--highlight .price-table__sticky-head {
    background-color: #add9c7;
}

.price-table__col--highlight .price-table__list li:nth-child(odd) {
    background-color: #add9c7;
}

.price-table__col--highlight .price-table__list li:nth-child(even) {
    background-color: #a7d3c1;
}

.price-table__col--highlight .price-table__apply-button-mobile {
    background-color: #add9c7;
}






/*
========================================
    === Membership Type Carousel ===
========================================
*/
:root {
    --c-green: #7BB59F;
    --c-green-dark: #6CA690;
    --c-red: #CD594A;
    --c-red-dark: #B94A3C;
    --c-text: #1a1a1a;
    --c-bg: #D6E9E2; /* Light mint background from image */
}

.membership-types-carousel__content {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 45px 0;
}

.membership-types-carousel__content p,
.membership-types-carousel__content li {
    font-size: 19px;
    font-weight: 400;
}

.membership-types-carousel__content p:last-child {
    margin-top: 20px;
}

.membership-types-carousel__content ul,
.membership-types-carousel__content li {
    list-style: inside disc;
}

.membership-types-carousel__content li::marker {
    margin-right: 5px;
}

/* --- Container Layout --- */
.membership-types-carousel {
    background-color: var(--c-bg);
    padding: 40px 0;
    position: relative;
    min-height: 600px; /* Prevent collapse while loading */
    /*font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
}

/* Loading Spinner */
.membership-types-carousel__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 4px solid var(--c-green);
    animation: spin 1s linear infinite;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.3s;
}

.membership-types-carousel__loader.hidden {
    opacity: 0;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* The scrolling list container */
.membership-types-carousel__list {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 50px 40px;
    
    /* The Magic: Snap Logic */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    
    /* Prevent Jump: Start hidden, fade in */
    opacity: 0; 
    transition: opacity 0.5s ease-out;
}

/* Class added by JS once scrolled into position */
.membership-types-carousel__list.loaded {
    opacity: 1;
}

/* --- Scrollbar Styling (Webkit) --- */
.membership-types-carousel__list::-webkit-scrollbar {
    height: 10px;
}
.membership-types-carousel__list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    margin: 0 20px;
}
.membership-types-carousel__list::-webkit-scrollbar-thumb {
    background: var(--c-red);
    border-radius: 10px;
}

/* --- Card Base Styles --- */
.membership-types-carousel-slide {
    flex: 0 0 85%; /* Mobile: Take 85% of screen */
    scroll-snap-align: center;
    background: white;
    border: 2px solid #000;
    border-radius: 23px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    min-height: 500px; /* Ensure alignment */
    min-width: 350px;
    max-width: 450px;
}

/* Desktop View */
@media (min-width: 901px) {
    .membership-types-carousel__list {
        scroll-snap-type: unset;
        -webkit-overflow-scrolling: unset;
    }
    .membership-types-carousel-slide {
        flex: 0 0 26.38%;
        width: 26.38%;
    }
}

/* --- Typography & Elements --- */
.membership-types-carousel__title {
    color: var(--c-green);
    font-size: 30px;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.membership-types-carousel__description {
    margin-bottom: 20px;
    font-size: 20px;
    color: #000;
    line-height: 1.4;
    min-height: 40px; /* Align content */
}

/* Green Separator Line */
.membership-types-carousel__divider {
    height: 2px;
    background-color: var(--c-green);
    width: 100%;
    margin: 15px 0;
}

/* Pricing Section */
.membership-types-carousel__price-label {
    font-weight: bold;
    font-size: 20px;
    display: block;
}
.membership-types-carousel__price-label span {
    font-weight: normal;
    font-size: 17px;
    color: #000;
}
.membership-types-carousel__amount {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}
.membership-types-carousel__vat {
    font-size: 31px;
    font-weight: bold;
}

/* Spacer to push button to bottom */
.membership-types-carousel__spacer {
    flex-grow: 1;
}

/* Button Styles */
.membership-types-carousel__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    background-color: var(--c-green);
    border: 2px solid var(--c-green);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 22px;
    margin-top: 20px;
}
.membership-types-carousel__button:after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: "▸";
    font-size: 30px;
}
.membership-types-carousel__button:active,
.membership-types-carousel__button:focus,
.membership-types-carousel__button:hover {
    background-color: #fff;
    color: var(--c-green); /* Ensure text stays white on hover */
}

/* --- PREMIUM CARD VARIANT (Red) --- */
.membership-types-carousel--recommended {
    background-color: var(--c-red);
    border: 2px solid #000;
    color: #000;
    z-index: 2;
    border-radius: 23px 0 23px 23px;
}

.membership-types-carousel--recommended .membership-types-carousel__title {
    color: white; /* White title on red bg */
}

.membership-types-carousel--recommended .membership-types-carousel__description {
    color: #000; /* Black text description */
}

.membership-types-carousel--recommended .membership-types-carousel__divider {
    background-color: #000; /* Black dividers */
}

.membership-types-carousel--recommended .membership-types-carousel__button {
    background-color: #fff;
    border-color: #fff;
    color: var(--c-red);
}
.membership-types-carousel--recommended .membership-types-carousel__button:active,
.membership-types-carousel--recommended .membership-types-carousel__button:focus,
.membership-types-carousel--recommended .membership-types-carousel__button:hover {
    color: #fff;
    background-color: var(--c-red);
}

/* Recommended Badge */
.membership-types-carousel__badge {
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-100%);
    background: white;
    color: var(--c-red);
    border: 2px solid #000;
    border-radius: 23px 23px 0 0;
    padding: 6px 16px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}






/*
========================================
    === Accordion ===
========================================
*/
.accordion {
    width: 90%;
    max-width: 1400px;
    margin: 80px auto;
    border-top: 1px solid #000;
}

.accordion-item {
    border-bottom: 1px solid #000;
}

.accordion-header .accordion-button {
    padding: 20px 40px 20px 0;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    position: relative;
}

.accordion-header .accordion-button:after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "▴";
    color: #6EBC9D;
    font-size: 30px;
    transform: translateY(-50%) rotate(180deg);
    transition: transform .5s ease;
}

.accordion-header .accordion-button.collapsed:after {
    transform: translateY(-50%);
}

.accordion-body {
    padding: 0 40px 40px 40px;
}


.accordion-body ul {
    margin: 1rem 0 1.6rem 35px;
}

.accordion-body ul,
.accordion-body li {
    list-style: disc;
}

.accordion-body li::marker {
    margin-right: 5px;
}

.accordion-body strong {
    margin-bottom: 1.6rem;
    color: #6EBC9D;
    font-size: 26px;
    font-weight: 600;
}






/*
========================================
    === Simple Link Banner ===
========================================
*/
.simple-link-banner {
    width: 90%;
    max-width: 786px;
    margin: 80px auto;
    background-color: #6EBC9D;
    background-position: top right;
    background-size: 40%;
    background-repeat: no-repeat;
    padding: 40px;
}

.simple-link-banner .banner-wrapper {
    width: 55%;
}

@media (max-width: 768px) {
    .simple-link-banner .banner-wrapper {
        width: 100%;
        padding-top: 100px;
    }
}

.simple-link-banner .banner-wrapper .banner-content {
    color: white;
}

.simple-link-banner .banner-wrapper .banner-content h2 {
    color: white;
    font-size: 30px;
    font-weight: 400;
}

.simple-link-banner .banner-wrapper .banner-content p {
    font-size: 18px;
    line-height: 30px;
}

.simple-link-banner .banner-wrapper .banner-actions {
    margin-top: 30px;
}

.simple-link-banner .banner-wrapper .banner-actions a.btn-download {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-flow: row nowrap;
    border-radius: 9999px;
    background-color: white;
    border: 2px solid white;
    color: #6EBC9D;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    transition: all .5s ease;
}

.simple-link-banner .banner-wrapper .banner-actions a.btn-download:active,
.simple-link-banner .banner-wrapper .banner-actions a.btn-download:focus,
.simple-link-banner .banner-wrapper .banner-actions a.btn-download:hover {
    color: white;
    background-color: #6EBC9D;
}

.simple-link-banner .banner-wrapper .banner-actions a.btn-download .icon-pdf {
    width: 22px;
    fill: #6EBC9D;
    transition: fill .5s ease;
}

.simple-link-banner .banner-wrapper .banner-actions a.btn-download:active .icon-pdf,
.simple-link-banner .banner-wrapper .banner-actions a.btn-download:focus .icon-pdf,
.simple-link-banner .banner-wrapper .banner-actions a.btn-download:hover .icon-pdf {
    fill: white;
}