:root {
    --scrollbar-width: 0px;
    --grid-columns: 12;
    --grid-gutter: 15px;
    --grid-margin: 25px;
    --grid-width: calc(100vw - (2 * var(--grid-margin)) - var(--scrollbar-width));
    --grid-column-width: calc((var(--grid-width) - ((var(--grid-columns) - 1) * var(--grid-gutter))) / var(--grid-columns));
    --black: #121212;
    --white: #F1F1F1;
    --yellow: #C9FE6E;
    --dark-grey: #232323;
    --success400: #ff0000;
    --dark-grey2: #323232;
    --text-grey: #777;
    --video-margin: 0
    --zapier-header-height: 56px;
    --zapier-header-z-index: 1000;
}

@font-face {
    font-family: 'Roobert-Regular';
    src: url('/fonts/Roobert-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roobert-Bold';
    src: url('/fonts/Roobert-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: bold;
}

*,.sr-only {
    padding: 0;
    border: 0
}

* {
    margin: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    margin: 0;
    font-family: 'Roobert-Regular', Arial, sans-serif;
    background-color: white;
    color: white;
    
}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/img/bg_key_visual.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-locations {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/img/bg_locations.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-diseases {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/img/bg_diseases.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    /* color: white; */
    text-align: left;
    /* font-family: 'Roobert-Bold', Arial, sans-serif; */
    font-size: 36px;
    font-weight: bold;

    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 36px;
        top: 15%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        top: 10%;
    }
}

.hero-text-subline {
    color: #f27be3;
    text-align: left;
}

.title {
    font-size: 36px;
    font-weight: bold;
    position: relative;
    top: 16%;
    right: 20px;
    text-align: left;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
    .title {
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }
}



.main {
    position: relative;
    color: #f27be3;
    width: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.plans {
    position: relative;
    color: #000000;
    width: 100%;
    background: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    transition: background 0.3s ease-in-out;
    z-index: 1000;

    /* justify-content: space-between; */
    /* align-items: flex-end; */
}

.navbar-links {
    display: flex;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);

    gap: 15px;
}

.navbar-links-locations a {
    color: rgb(129, 18, 111);
}

.navbar-links.scrolled {
    text-shadow: none;
}


.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.hamburger.scrolled {
    color: rgb(129, 18, 111);
}

.navbar a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
    font-weight: bold;
}


.navbar.scrolled {
    background: white;
}
.navbar.scrolled a {
    color: rgb(129, 18, 111);
}

@media (max-width: 400px) {
    .logo {
        position: absolute;
        top: 20px;
        left: 20px;
        height: 20px;
        transition: opacity 0.3s;
    }
}

@media (max-width: 850px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        align-items: flex-end; /* Align links to the right */
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px; /* below the navbar */
        right: 0;
        width: 100%;
        padding: 20px 0;
    }

    .navbar-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .navbar.scrolled a {
        color: rgb(255, 255, 255);
    }

    /* Mobile language selector adjustments */
    .language-selector {
        margin: 10px 20px 0 0;
        align-self: flex-end;
    }

    .language-selector-toggle {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }

    .language-dropdown {
        right: 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .language-option {
        color: #333;
    }
    
}

@media (min-width: 400px) {
    .logo {
        position: absolute;
        top: 20px;
        left: 20px;
        height: 40px;
        transition: opacity 0.3s;
    }
}
@media (min-width: 500px) {
    .logo {
            position: absolute;
            top: 30px;
            left: 20px;
            height: 80px;
            transition: opacity 0.3s;
    }
}

.logo.scrolled {
    top: 10px;
    left: 20px;
    height: 40px;
}

.logo {
    top: 20px;
    left: 20px;
}
.subtitle {
    font-size: 18px;
    margin-top: 10px;
}
.cta-buttons {
    margin-top: 20px;
}
.btn {
    padding: 10px 20px;
    background: #ff0077;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn:hover {
    background: #cc005f;
}
.heading {
    background: white;
    color: black;
    padding: 0px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center; width: 100%;
    font-weight: 600;
    font-family: "Roobert-Regular", Arial, sans-serif;
    font-size: 42px;
}
.info-section {
    background: white;
    color: black;
    padding: 20px 20px;
    display: flex;
    justify-content: space-around;
    text-align: left;
    gap: 50px; 
}
.info-grid {
    padding-top: 10px;
    background: white;
    justify-content: center;  /* Centers content horizontally */
    align-items: center;     /* Centers content vertically if needed */
    max-width: 1200px;       /* Retain your existing max-width */
    margin: 0 auto;          /* Center the .info-grid on the screen horizontally */
    display: flex;           /* Flexbox layout for centering */
    flex-direction: column;  /* Stack children vertically if necessary */
}
.info-column {
    max-width: 200px;
    min-width: 100px;
}

.info-column-2 {
    max-width: 600px;
    min-width: 200px;
}

.info-column-onas {
    max-width: 600px;
    min-width: 200px;
}


.info-column-contact {
    max-width: 200px;
    min-width: 250px;
}
.info-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.info-title-centered {
    text-align: center;
}

.info-text {
    font-size: 16px;
    line-height: 1.5;
}
.mono {
    text-transform: uppercase
}

.pr {
    position: relative
}

.pa {
    position: absolute
}

.pf {
    position: fixed
}

.f {
    display: flex;
    flex-wrap: wrap
}

.f-space {
    justify-content: space-between
}

.f-center {
    align-items: center
}

a,button,h1,h2,h3,h4,h5,h6,li,p,span,ul {
    font-feature-settings: "liga"1,"dlig"1,"hlig"1,"cswh"1,"kern"1,"ss02"1!important;
}

h1 {
    display: block;
    color: rgba(45, 46, 46, 1);
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

h2 {
    display: block;
    color: rgba(45, 46, 46, 1);
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

h3 {
    display: block;
    color: rgba(45, 46, 46, 1);
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap
}

button,input {
    font: inherit
}

input {
    outline: 0
}

button {
    cursor: pointer;
    color: var(--black)
}

a {
    color: inherit;
    text-decoration: underline;
}

ul {
    list-style-type: none
}

footer {
    padding: calc(2*var(--grid-margin)) var(--grid-margin) var(--grid-margin);
    row-gap: 30px;
    overflow: hidden;
    z-index: 1;
    background: black;
}

footer .col2 ul {
    margin: 1.3em 0 0
}

footer .col3 {
    flex-direction: column;
    justify-content: flex-end
}

footer .col3 ul {
    gap: var(--grid-margin);
}


footer h2:not(.sm-title) {
    font: inherit;
    font-weight: bold;
    color: var(--text-grey);
    margin: .2em 0 0
}

.sm-title {
    color: rgba(241, 241, 241, 0.8);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

footer ul a,footer ul li {
    line-height: 1.8
}

footer .p-tiny {
    color: var(--text-grey);
    width: calc((3*var(--grid-column-width)) + (3 - 1)*var(--grid-gutter));
    margin: var(--grid-gutter)0 0
}

.form-newsletter {
    width: calc((4*var(--grid-column-width)) + (4 - 1)*var(--grid-gutter));
    padding: 1.32em 0 .3em;
    border-bottom: 1px solid var(--dark-grey)
}

.form-newsletter:has(input:focus) {
    border-bottom: 1px solid var(--white)
}

.form-newsletter input {
    flex: 1 1 auto;
    background-color: transparent;
    color: inherit
}

.form-newsletter input::placeholder {
    color: var(--white)
}

.form-newsletter .btn-join {
    background-color: transparent;
    color: var(--white);
    padding-right: 0
}

.sec-black-clip {
    overflow: hidden;
    padding: 1.1vw 0 0;
    margin: -1.1vw 0 0;
    z-index: 1
}

@media (max-width: 1024px) {
    footer {
        row-gap:30px
    }

    footer .col1 {
        width: 100%
    }

    footer .col2last {
        margin: 0 calc(calc((6*var(--grid-column-width)) + (6 - 1)*var(--grid-gutter)) + var(--grid-gutter))0 0
    }

    .form-newsletter {
        width: calc((6*var(--grid-column-width)) + (6 - 1)*var(--grid-gutter))
    }

    footer .p-tiny {
        max-width: calc((5*var(--grid-column-width)) + (5 - 1)*var(--grid-gutter));
        width: 100%
    }
}


@media (max-width: 450px) {
    .title {
        font-size: 30px;
    }
}

@media (min-width: 1075px) {

    .info-column {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center; /* Center the columns when stacked */
        gap: 50px; 
    }

    .info-column {
        max-width: 300px;
        margin-bottom: 20px; /* Add some space between stacked items */
        gap: 50px; 
    }

    footer {
        row-gap:30px
    }

    .form-newsletter {
        width: 100%;
        max-width: 500px
    }

    footer .p-tiny {
        max-width: 375px;
        margin: var(--grid-margin)0 60px
    }

    footer .col2 {
        width: calc((6*var(--grid-column-width)) + (6 - 1)*var(--grid-gutter))
    }

    footer .col2last {
        margin: 40px 0 30px
    }

    footer .col3 {
        order: 6;
        font-size: 11px;
        margin: 10px 0
    }

    footer .col4 {
        order: 5;
        max-width: 500px
    }

    footer .col3,footer .col4 {
        width: 100%
    }

    footer ul {
        justify-content: space-between;
        max-width: 500px
    }

    .sec-black-clip {
        padding: 2vw 0 0;
        margin: -2vw 0 0
    }
}

/* ================================================================ Plans ======================================================== */
@media (min-width: 715px) {
    .css_plans_grid_content {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
    }
}
.css_plans_grid_content {
    max-width: 1200px;
    display: grid ;
    grid-template-columns: 1fr;
    position: relative;
    gap: 25px;
}
.css_plans_grid_wrapper {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}
@media (min-width: 0) {
 .css_plan_card_root {
    display: block;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    position: relative;
 }
 .css_plan_card_root {
    height: 100%;
 }
}

.css_plan_card_tag {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 2;
}
.css_plan_card_tag_label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--zds-radius-small, 30px) !important;
    background-color: #f340db!important; 
    color: #ffffff !important;

}

.css_plan_card_tag_label_2 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--zds-radius-small, 30px) !important;
    background-color: #f7e8ff !important; 
    color: #2d2e2e;
}

.css_plan_card_tag_label[data-size='small'] {
    height: auto;
    padding: var(--zds-space-2, 2px) var(--zds-space-6, 12px);
    font: var(--zds-small-print-2, 700 14px / 20px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--intentionally-undefined, default);
    text-transform: var(--zds-radius-none, none);
}
.css_plan_card_tag_label_2[data-size='small'] {
    height: auto;
    padding: var(--zds-space-2, 2px) var(--zds-space-4, 8px);
    font: var(--zds-small-print-2, 700 14px / 20px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--intentionally-undefined, default);
    text-transform: var(--zds-radius-none, none);
}

[data-zds] {
   box-sizing: border-box;
}
[data-zds]:where( :not( html, iframe, canvas, code, img, svg, table, thead, th, td, tbody, tr, video, audio ):not(svg *, symbol *) ) {
    all: unset;
    display: revert;
    box-sizing: border-box;
}

@media (min-width: 0) {
    .css_plan_card_overview_wrapper {
        background: #fffdf9;
        border-radius: 10px;
        border: 1px solid #d7d5d2;
        display: block;
        padding: 20px;
        position: relative;
        -webkit-transition: all 0.5sease;
        transition: all 0.5sease;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.css_plan_name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.css_plan_name_text {
    font: var(--zds-section-header, 700 24px / 30px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--zds-letter-spacing-header, normal);
    text-transform: var(--zds-radius-none, none);
    color: var(--zds-text-default, #2d2e2e);
    font-weight: 700;
    max-width: 100%;
    text-align: inherit;
    -webkit-transition: color 0.2sease-in-out;
    transition: color 0.2sease-in-out;
}
.css_plan_description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (min-width: 0) {
   .css_plan_price_details {
        margin: 15px 0 18px 0;
    }
}
@media (min-width: 0) {
    .css_plan_price_space {
        display: none;
        visibility: hidden;
    }
}

.css_spacer-0-by-21 {
    width: 0;
    height: 21px;
}

.css_plan_price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0px;
}

.css_plan_price_currency_margin {
    margin: 2px 2px 0 0;
}
.css_plan_price_currency_symbol {
    font: var(--zds-small-print-3, 600 14px / 20px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--intentionally-undefined, default);
    text-transform: var(--zds-radius-none, none);
    color: var(--zds-text-default, #2d2e2e);
    max-width: 100%;
    text-align: inherit;
    -webkit-transition: color 0.2sease-in-out;
    transition: color 0.2sease-in-out;
}
.css_plan_price_value {
    font: var(--zds-page-header, 600 34px / 40px var(--zds-typography-heading, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--zds-letter-spacing-header, 1px);
    text-transform: var(--zds-radius-none, none);
    color: var(--zds-text-default, #2d2e2e);
    max-width: 100%;
    text-align: inherit;
    -webkit-transition: color 0.2sease-in-out;
    transition: color 0.2sease-in-out;
}
.css_plan_price_text_margin {
    margin: 13px 0 0 3px;
}
.css_feature_text {
    font: var(--zds-small-print-2, 500 14px / 20px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--intentionally-undefined, default);
    text-transform: var(--zds-radius-none, none);
    color: var(--zds-text-default, #2d2e2e);
    max-width: 100%;
    text-align: inherit;
    -webkit-transition: color 0.2sease-in-out;
    transition: color 0.2sease-in-out;
}

.css_base_button[data-color='primary'][data-size='small'] {
    font: var(--zds-body-3, 600 16px / 24px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
}
.css_base_button[data-size='small'] {
    --Button-buttonContentPadding-7e54ff1a: 0 var(--zds-space-12, 20px);
    height: var(--zds-size-small, 44px);
}
.css_base_button[data-shadowed] {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
}
.css_base_button[data-full-width] {
    width: 100%;
}
.css_base_button[data-color='primary'] {
    --Button-baseBackgroundColor-1934a82c: var(--zds-ui-primary-stronger, #f340db);
    --Button-baseColor-2c30f322: var(--zds-background-weaker, #fffdf9);
    --Button-hoverBackgroundColor-59a5fbe9: var(--zds-ui-primary-strongest, #720063);
}

.css_base_button[data-color='disabled'] {
    --Button-baseBackgroundColor-1934a82c: var(--zds-ui-primary-stronger, #7e7f8d);
    --Button-baseColor-2c30f322: var(--zds-background-weaker, #fffdf9);
    --Button-hoverBackgroundColor-59a5fbe9: var(--zds-ui-primary-strongest, #504f55);
}

a[data-zds], label[data-zds], button:not([disabled])[data-zds] {
    cursor: pointer;
}
.css_base_button {
    --Button-baseBackgroundColor-1934a82c: transparent;
    --Button-baseBorderColor-5dc73f16: transparent;
    --Button-baseColor-2c30f322: #000;
    --Button-disabledBackgroundColor-38d170c9: var(--zds-background-strongest, #f7f5f2);
    --Button-disabledBorderColor-68421a8b: var(--zds-background-strongest, #d7d5d2);
    --Button-disabledColor-74feca57: var(--zds-text-weakest, #a8a5a0);
    --Button-disabledOutlineColor-f9efacd: transparent;
    --Button-hoverBackgroundColor-59a5fbe9: var(--Button-baseBackgroundColor-1934a82c);
    --Button-hoverBorderColor-11a6ca55: var(--Button-baseBorderColor-5dc73f16);
    --Button-hoverColor-4b2f4289: var(--Button-baseColor-2c30f322);
    --Button-hoverOutlineColor-4c6b43ad: transparent;
    --Button-iconMargin-7d599177: 6px;
    --Button-focusBackgroundColor-2041bb33: var(--Button-baseBackgroundColor-1934a82c);
    --Button-focusBorderColor-57a1908f: transparent;
    --Button-focusColor-66a0135b: var(--Button-baseColor-2c30f322);
    --Button-focusOutlineColor-c2e4549: var(--Button-focusBackgroundColor-2041bb33);
    --Button-selectedBackgroundColor-4fcb6936: var(--Button-baseBackgroundColor-1934a82c);
    --Button-selectedBorderColor-1d62690c: transparent;
    --Button-selectedColor-1de7b268: var(--Button-baseColor-2c30f322);
    --Button-selectedOutlineColor-1778394: transparent;
    --Button-buttonContentPadding-7e54ff1a: 0 10px;
    background-color: var(--Button-baseBackgroundColor-1934a82c);
    border-color: var(--Button-baseBorderColor-5dc73f16);
    color: var(--Button-baseColor-2c30f322);
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
    min-width: 0;
    opacity: 1;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: all 200msease-in-out;
    transition: all 200msease-in-out;
    vertical-align: middle;
    white-space: nowrap;
}
@media (min-width: 0) {
    .css_features_wrapper {
        margin-top: 15px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
    }
}
@media (min-width: 0) {
    .css_features_title {
        font-family: var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif);
        font-size: 16px;
        line-height: 24px;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }
}
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.css_feature {
    cursor: default;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.css_feature_icon {
    margin-top: 3px;
    margin-right: 5px;
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
}
.css_tooltip_wrapper {
    position: relative;
    display: inline-block;
}
.css_tooltip_feature {
    font-family: var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #2d2e2e;
    margin: 0;
    padding-right: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-underline-offset: 3px;
}
.css_tooltip_wrapper .css_tooltip_wrapper_content[class][class][class][class][class][class] {
    pointer-events: none;
}
.css_tooltip_wrapper .css_tooltip_wrapper_content[class][class][class][class][class] {
    z-index: 10;
    position: absolute;
    bottom: calc(100% + var(--zds-space-2, 5px));
    left: 0;
    opacity: 0;
    -webkit-transition: all 300msease-in-out;
    transition: all 300msease-in-out;
    pointer-events: none;
}
.css_tooltip_multiline_wrapper {
    display: block;
    color: var(--zds-brand-almost-white, #fffdf9);
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 20px 0px;
    background-color: var(--zds-gray-warm-10, #2d2e2e);
    /* width: max-content; */
    max-width: 300px;
    animation: 300msease-in-out 0s 1 normal none running animation-1acbpvw;
    font: var(--zds-body-1, 600 16px / 24px var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif));
    letter-spacing: var(--intentionally-undefined, default);
    text-transform: var(--zds-radius-none, none);
    border-radius: var(--zds-radius-medium, 10px);
    padding: var(--zds-space-12, 16px) var(--zds-space-16, 14px);
    text-align: left;
}

.css_tooltip_wrapper .css_tooltip_wrapper_content[class][class][class][class][class][class] {
    pointer-events: none;
}
.css_feature_tooltip_content_text {
    display: block;
}

.css_feature_tooltip_text {
    width: 250px;
}
svg {
    fill: inherit;
}
.css_feature_icon_container[class] {
    height: 20px;
    width: 20px;
    transition-property: fill;
    transition-timing-function: ease-in-out;
    transition-duration: 300ms;
    fill: #0f884e !important;
    display: inline-block;
}
.css_feature_icon_color {
    fill: #0f884e !important;
}

.css_link[data-weight='inherit'] {
    font-weight: inherit;
}
.css_link[data-color='primary'] {
    color: var(--zds-text-link, #3d4592);
}
a[data-zds], label[data-zds], button:not([disabled])[data-zds] {
    cursor: pointer;
}
.css_link {
    all: unset;
    box-sizing: border-box;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition: all 300msease-in-out;
    transition: all 300msease-in-out;
    outline-offset: 1px;
    -webkit-text-fill-color: currentColor;
    outline: 1px solid transparent;
}

.css_circle {
    display: inline-block;          /* Ensures circle adjusts to text */
    width: 20px;                    /* Set circle dimensions */
    height: 20px;
    background-color: black;        /* Black circle background */
    color: white;                   /* White text for the number */
    border-radius: 50%;             /* Makes it a circle */
    text-align: center;             /* Center-align text horizontally */
    line-height: 20px;              /* Vertically center the text */
    font-size: 15px;                /* Adjust text size if needed */
    font-weight: bold;              /* Optional: Make the number bold */
}


/* ================================================================ FAQ ======================================================== */

.css_faq_wrapper.builder-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    min-height: 100px;
}

.css_faq_section {
    width: 100%;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    box-sizing: border-box;
    max-width: 1200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
}

.css_faq_header.builder-block {
    margin-top: 20px;
    height: auto;
    color: rgba(45, 46, 46, 1);
    font-weight: 600;
    font-family: "Roobert-Regular", Arial, sans-serif;
    font-size: 42px;
    margin-right: auto;
    line-height: normal;
    box-sizing: border-box;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


.css_faq_header_text {
    outline: none;
}



.css_faq_sub_header.builder-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 30px;
    line-height: normal;
    height: auto;
    font-family: "Roobert-Regular", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.css_faq_item.builder-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 5px;
    line-height: normal;
}

.css_accordion {
    position: relative !important;
    background-color: #ffffff !important;
    border: 1px solid #f7f5f2 !important;
    border-radius: 10px !important;
    transition-property: box-shadow, border-color, background-color !important;
    transition-timing-function: ease-in-out !important;
    transition-duration: 300ms !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.css_accordion[class] {
    background-color: rgb(255, 255, 255) !important;
    border-color: rgb(215, 213, 210) !important;
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px 0px !important;
}


.css_accordion_summary {
    font-family: var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    color: #403f3e;
    cursor: pointer;
    list-style: none;
    padding: 20px;
    padding-left: 55px;
    -webkit-appearance: none;
}

.css_accordion_summary::-webkit-details-marker {
    display: none;
}

.css_accordion_arrow {
    position: absolute;
    top: 20px;
    left: 15px;
}

.css_accordion_content {
    font-family: var(--zds-typography-base, "Roobert-Regular", Arial, sans-serif);
    font-size: 18px;
    line-height: 31px;
    font-weight: 400;
    color: #2d2e2e;
    margin: 20px;
    margin-left: 55px;
}
        
@media (orientation: landscape) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    .main, .plans, .info-section, .info-grid {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}
        
/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.language-selector-toggle {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-selector-toggle:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-selector-toggle img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-selector-toggle .arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.language-selector-toggle.active .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: #333;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-option span {
    font-size: 14px;
    font-weight: 500;
    color: rgb(129, 18, 111);
}

/* Mobile responsive adjustments */
@media (max-width: 850px) {
    .language-selector {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .language-dropdown {
        right: -10px;
    }
}
        
