﻿*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 26px;
    background-color: white
}
h3, h6 {
    font-family: "Sansation", sans-serif;
    width: 100%;
}
h3 {
    font-size: clamp(24px, 3vw, 30px);
    margin: 0;
    margin-bottom: 30px;
}
h6 {
    font-size: clamp(15px, 5vw, 20px);
    margin: 0;
}
b {
    font-weight: 600;
}
p, ul {
    width: 100%;
    margin: 0;
}
.landing-container {
    width: 100%;
    overflow-x: hidden;
}
.top-landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-bottom: 1px solid #eee;
    height: 60px;
    box-shadow: rgba(33, 37, 41, 0.1) 0px 0px 32px 0px;
}
    .top-landing-nav.open .landing-menu {
        display: block;
    }
.top-landing-left {
    display: flex;
    align-items: center;
}
.top-landing-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.top-landing-right a {
    text-align: center;
}
.logo-landing {
    display: flex;
}
#dynamic-logo {
    height: clamp(22px, 2.5vw, 28px);
    width: auto;
}
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.landing-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
    .landing-menu a {
        width: 100%;
        color: #000;
        margin-left: 15px;
        font-size: clamp(16px, 2.5vw, 18px);
    }
    .landing-menu a:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
.dynamic-info-section {
    display: flex;
    flex-wrap: wrap;
}
.dynamic-info-section section {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
#far section:nth-of-type(1) {
    background: #f7faff;
    background: linear-gradient(181deg,rgba(247, 250, 255, 1) 23%, rgba(162, 193, 222, 1) 100%);
    justify-content: center;
    padding-bottom: 20px;
}
    #far section:nth-of-type(1) img {
        height: 28px;
        margin: 40px;
        width: 100%;
    }
    #far section:nth-of-type(1) h3 {
        text-align: center;
        margin-left: clamp(10px, 14vw, 200px);
        margin-right: clamp(10px, 14vw, 200px);
        max-width: 1000px;
    }
#far section:nth-of-type(2) {
    background: white;
    justify-content: center;
}
    #far section:nth-of-type(2) p {
        margin-left: clamp(20px, 10vw, 400px);
        margin-right: clamp(20px, 10vw, 400px);
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: center;
        font-size: clamp(16px, 1.8vw, 19px);
    }
#far section:nth-of-type(3) {
    justify-content: center;
    padding-bottom: 50px;
    background: white;
}

.df-carousel {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.df-carousel__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    outline: none;
    touch-action: pan-y;
}

.df-carousel__track {
    display: flex;
    transition: transform 500ms ease;
    will-change: transform;
}

.df-carousel__slide {
    flex: 0 0 100%;
}

    .df-carousel__slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

.df-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
    display: grid;
    place-items: center;
    user-select: none;
}

    .df-carousel__btn:hover {
        background: rgba(0, 0, 0, 0.6);
    }

.df-carousel__btn--prev {
    left: 12px;
}

.df-carousel__btn--next {
    right: 12px;
}

.df-carousel__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px 0 0;
}

.df-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

    .df-carousel__dot[aria-selected="true"] {
        background: rgba(0, 0, 0, 0.7);
    }

/* Optional: hide arrows on very small screens */
@media (max-width: 420px) {
    .df-carousel__btn {
        display: none;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .df-carousel__track {
        transition: none;
    }
}

#far section:nth-of-type(4) {
    background-color: #f5f5f5;
    justify-content: center;
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
}
    #far section:nth-of-type(4) h3 {
        text-align: center;
    }
    #far section:nth-of-type(4) p {
        margin: 10px 20px;
    }
    #far section:nth-of-type(4) ul {
        margin: 10px 20px;
        margin-bottom: 60px;
    }
#far section:nth-of-type(5) {
    background-color: #e1eaf7;
    justify-content: center;
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(30px, 5vw, 50px);
}
    #far section:nth-of-type(5) p {
        width: 100%;
        font-family: "Sansation", sans-serif;
        font-weight: 600;
        text-align: center;
        margin: 30px 0px;
        font-size: clamp(20px,4vw, 26px);
    }
    #far section:nth-of-type(5) a {
        background-color: #051a3d;
        padding: 15px;
        color: white;
        cursor: pointer;
        border-radius: 3px;
        font-size: 16px;
    }
        #far section:nth-of-type(5) a:hover {
            transform: scale(1.01);
        }
#far section:nth-of-type(6) {
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(30px, 5vw, 50px);
}   
    #far section:nth-of-type(6) div {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    #far section:nth-of-type(6) .left {
        align-content: start;
        margin-bottom: 40px;
    }
        #far section:nth-of-type(6) .left p {
            margin: 0;
            margin-bottom: 20px;
        }
        #far section:nth-of-type(6) .left ul {
            margin: 0;
        }
    #far section:nth-of-type(6) .right {
        align-content: start;
        justify-content: center;
    }
        #far section:nth-of-type(6) .right img {
            max-height: 560px;
            max-width: 100%;
        }

#far section:nth-of-type(7) {
    background-color: #f5f5f5;
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(30px, 5vw, 50px);
}
    #far section:nth-of-type(7) div {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    #far section:nth-of-type(7) .left {
        align-content: start;
        justify-content: center;
        margin-bottom: 40px;
    }
        #far section:nth-of-type(7) .left img {
           max-width: 100%;
        }
    #far section:nth-of-type(7) .right {
        align-content: start;
    }
#far section:nth-of-type(8) {
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(15px, 5vw, 20px);
    justify-content: center;
}
    #far section:nth-of-type(8) h3 {
        text-align: center;
    }
    #far section:nth-of-type(8) img {
        width: 100%;
        max-width: 1180px;
        margin-bottom: 20px;
    }
#far section:nth-of-type(9) {
    padding-left: clamp(20px, 2vw, 100px);
    padding-right: clamp(20px, 2vw, 100px);
}
    #far section:nth-of-type(9) div {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-content: start;
        justify-content: center;
    }
    #far section:nth-of-type(9) .left {
        margin-bottom: 30px;
    }
    #far section:nth-of-type(9) .left img {
        width: 100%;
        max-width: 550px;
    }
    #far section:nth-of-type(9) .right h6 {
        margin: 0px;
        margin-bottom: 15px;
    }
    #far section:nth-of-type(9) .right p {
        margin: 0;
        margin-bottom: 20px;
    }
    #far section:nth-of-type(9) .right ul {
        margin: 0;
        margin-bottom: 30px;
    }
#far section:nth-of-type(10) {
    background-color: #f5f5f5;
    padding-left: clamp(30px, 4vw, 100px);
    padding-right: clamp(30px, 4vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    flex-wrap: wrap;
    justify-content: center;
}
    #far section:nth-of-type(10) div {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-content: start;
    }
    #far section:nth-of-type(10) .left {
        margin-bottom: 30px;
    }
        #far section:nth-of-type(10) .left p {
            margin-bottom: 20px;
        }
    #far section:nth-of-type(10) p {
        width: 100%;
        text-align:center;
        margin-bottom: 20px;
    }
    #far section:nth-of-type(10) .left p {
        width: 100%;
        text-align: left;
        margin-top: 0px;
    }
    #far section:nth-of-type(10) .right {
        justify-content: center;
    }
        #far section:nth-of-type(10) img {
            width: 100%;
            margin-bottom: 20px;
            max-width: 1200px;
        }
    #far section:nth-of-type(10) .right img {
        width: 100%;
        margin-bottom: 20px;
        max-width: 600px;
    }
#far section:nth-of-type(11) {
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-bottom: clamp(30px, 5vw, 50px);
    padding-top: clamp(30px, 5vw, 50px);
    flex-wrap: wrap;
}
    #far section:nth-of-type(11) div {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        align-content: start;
    }
        #far section:nth-of-type(11) div img {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            margin-bottom: 20px;
            max-width: 800px;
        }
    #far section:nth-of-type(11) h6 {
        margin: 0px;
        margin-bottom: 10px;
    }
    #far section:nth-of-type(11) p {
        margin-bottom: 20px;
    }

    #far section:nth-of-type(11) ul {
        margin-bottom: 20px;
    }
#far section:nth-of-type(12) {
    background-color: #e1eaf7;
    justify-content: center;
    padding-left: clamp(40px, 7vw, 100px);
    padding-right: clamp(40px, 7vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(30px, 5vw, 50px);
}
    #far section:nth-of-type(12) p {
        width: 100%;
        font-family: "Sansation", sans-serif;
        font-weight: 600;
        text-align: center;
        margin: 30px 0px;
        font-size: clamp(20px,4vw, 26px);
    }
    #far section:nth-of-type(12) a {
        background-color: #051a3d;
        padding: 15px;
        color: white;
        cursor: pointer;
        border-radius: 3px;
        font-size: 16px;
    }
        #far section:nth-of-type(12) a:hover {
            transform: scale(1.01);
        }

@media (min-width: 550px) {
    .nav-toggle {
        display: none;
    }

    .top-landing-nav {
        height: 70px;
    }

    .landing-menu {
        display: flex;
        justify-content: space-between;
        font-family: "Questrial", sans-serif;
        position: static;
        padding: 0;
        box-shadow: none;
        border: 0;
        align-items: center;
        gap: 2rem;
    }
    .top-landing-right {
        flex-wrap: nowrap;
        justify-content: right;
        min-width: 300px;
    }

        .top-landing-right a {
            text-align: left;
        }
}
@media (min-width: 1200px) {
    .nav-toggle {
        display: none;
    }
    .top-landing-nav {
        height: 70px;
    }
    .landing-menu {
        display: flex;
        justify-content: space-between;
        font-family: "Questrial", sans-serif;
        position: static;
        padding: 0;
        box-shadow: none;
        border: 0;
        align-items: center;
        gap: 2rem;
    }
    #far section:nth-of-type(6) .left {
        width: 60%;
        padding-right: 50px;
    }
    #far section:nth-of-type(6) .right {
        width: 40%;
        justify-content: start;
    }
    #far section:nth-of-type(7) .left {
        width: 50%;
    }
    #far section:nth-of-type(7) .left img {
        width: 100%;
        max-width: 500px;
    }
    #far section:nth-of-type(7) .right {
        width: 50%;
        padding-left: 50px;
        padding-right: clamp(0px, 1vw,180px);
    }
    #far section:nth-of-type(9) {
        padding-bottom: clamp(0px, 1.5vw, 40px);
    }
    #far section:nth-of-type(9) .left {
        width: 50%;
    }
    #far section:nth-of-type(9) .right {
        width: 50%;
        padding-right: clamp(0px, 2.5vw,200px);
    }
    #far section:nth-of-type(10) .left {
        width: 50%;
        padding-right: clamp(0px, 2.5vw,200px);
    }
    #far section:nth-of-type(10) .right {
        width: 50%;
        padding-right: clamp(0px, 2.5vw,200px);
    }
    #far section:nth-of-type(10) p {
        margin-top: 30px;
    }
    #far section:nth-of-type(10) .left p {
        margin-top: 0px;
    }
    #far section:nth-of-type(11) .left {
        width: 50%;
        padding-right: clamp(0px, 2.5vw,200px);
    }
    #far section:nth-of-type(11) .left img {
        max-width: 600px;
    }
    #far section:nth-of-type(11) .right {
        width: 50%;
        padding-right: clamp(0px, 2.5vw,200px);
    }
}