* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1900px) {
    body {
        zoom: 0.75;
    }
}

:root {
    --primary-color: rgb(19, 19, 19);
    --main-text-color: #e7e7e7;
    --purple-main-color: #4d002f;
    --purple-secondary-color: #70032d;
    --purple-terciary-color: #b9002e;
    /* added code */
    --base-duration: 500ms;
    /* Colors */
    --color-1: #2c3e50;
    --color-2: #1abc9c;
    --color-3: #2ecc71;
}

body {
    background: radial-gradient(circle at 0% 60%, #410228 0, #410228 10%, var(--primary-color) 100%);
    margin: 0 auto;
    padding: 0;
    /* Change width to a fixed value instead of 100% */
    width: 1920px;
    /* Remove max-width if you want it to strictly stay at 1200px */
    min-height: 100vh;
    min-width: 1910px;
    /* Ensures the body doesn't shrink below 1200px */
    /* overflow-x: auto; */
    /* Allows horizontal scrollbar if the screen is smaller than 1200px */
}

nav {
    background-color: transparent;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9;
    height: 100px;
}

.navContainer {
    margin: 0;
    padding: 6px 0;
    width: 100%;
    z-index: 10;
    /* border: 1px solid black; */
}

.navList {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    background-color: var(--primary-color);
    padding: 5px 0;
    border-radius: 30px;
    margin: 0 10%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.navContainer>ul>li>a {
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "Nunito Sans", sans-serif;
    color: var(--main-text-color);
    transition: 100ms;
    display: inline-block;
}

.navContainer>ul>li>a:hover {
    filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.7));
    color: white;
    transform: translateY(-2px) translateX(-2px);
}

.navContainer>ul>li>a>img {
    width: 320px;
    /* filter: drop-shadow(3px 3px 2px rgba(248, 49, 255, 0.24)); */
}

#navLogo:hover {
    filter: none;
}

.heroBanner {
    background-color: white;
    width: 100%;
    height: 800px;
    border-radius: 0 0 90px 90px;
    margin: -100px 0 5px 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    /* border: 1px solid black; */
}

.heroTitle {
    position: absolute;
    width: 50%;
    font-family: "Nunito Sans", sans-serif;
    text-transform: uppercase;
    font-size: 4rem;
    text-align: center;
    font-weight: 800;
    line-height: 50px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--purple-main-color);
    z-index: 1;

}

.heroImage {
    width: auto;
    height: 84%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}


.heroParagraphTitle1 {
    position: absolute;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    top: 40%;
    left: 5%;

}

.heroParagraphTitleSeparator {
    width: 20px;
    transform: translateY(-2px);
    
}

.heroParagraph1 {
    position: absolute;
    top: 47%;
    left: 18%;
    transform: translateX(-50%);
    width: 25%;
    text-align: left;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    z-index: 5;
}

.ratingStars {
    position: absolute;
    width: 15%;
    top: 51%;
    right: 10%;
}

.ratingStars img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.yearsText {
    font-family: "Nunito Sans", sans-serif;
    color: var(--purple-main-color);
    font-size: 1.6rem;
    transform: translateX(10px);
}

.experienceText {
    font-family: "Nunito Sans", sans-serif;
    color: var(--purple-main-color);
    font-size: 1.4rem;
    transform: translateX(30px);

}

.bold {
    font-weight: 800;
    color: var(--purple-main-color);
}

.circleWrapper {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%);
}

.circleAnimated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dotted var(--purple-main-color);
    border-radius: 50%;
    animation: Expanding 15s infinite;
    transform-origin: center;
    opacity: 0;
}

.circle1 {
    animation-delay: 0s;
    border-color: #ff7ccd;
}

.circle2 {
    animation-delay: 3s;
    border-color: rgb(122, 12, 126);
}

.circle3 {
    animation-delay: 4s;
    border-color: #410228;
}

@keyframes Expanding {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


.heroButtonsContainer {
    position: absolute;
    z-index: 5;
    display: flex;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    width: 30%;
    background-color: rgba(255, 101, 152, 0.11);
    border: 1px solid rgb(255, 232, 251);
    padding: 4px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(30px);
    border-radius: 50px;
}

.heroButton {
    width: 35%;
    padding: 5px;
    text-decoration: none;
}


.buttonOurServices {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: var(--purple-main-color);
    border-radius: 30px;
    padding: auto;
}

.buttonOurServices:hover {
    background-color: var(--purple-secondary-color);
    transition: 200ms;
}


.buttonOurServices p {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.buttonContactUs {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: hsla(342, 100%, 40%, 1);
    border-radius: 30px;
    border: 2px solid rgb(255, 182, 216);
    padding: auto;
}

.buttonContactUs:hover {
    background-color: hsl(345, 99%, 37%);
    transition: 200ms;
    transform: translateY(-2px);
}

.buttonContactUs p {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.aboutUsSection {
    padding-top: 20px;
    background-color: transparent;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    /* border: 1px solid black; */
}

.stats {
    width: 75%;
    height: 200px;
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(30px);
    border: 1px solid white;
    border-radius: 45px;
    margin: 0 auto;
}

.stat {
    height: 95%;
    width: 20%;
    display: flex;
    flex-direction: column;
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

.statNumber {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 40px;
}

/* cards */

.OurServicesTitle {
    width: 100%;
    background-color: none;
    font-family: "Nunito Sans", sans-serif;
    color: #e0e0e0;
    font-size: 6rem;
    margin: 100px auto 10px auto;
    font-weight: 800;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 101, 152, 0.5);
}

/* =========================================
   CAROUSEL BUTTONS & WRAPPER
   ========================================= */
.carousel-container {
    /* background-color: var(--primary-color); */
    position: relative;
    width: 100%;
    height: auto;
    max-width: 97%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* border: 1px solid red; */

}

.carousel-btn {
    position: absolute;
    z-index: 10;
    background-color: var(--purple-secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background-color: var(--purple-terciary-color);
    transform: scale(1.1);
    
}

.left-btn {
    left: -10px;
    /* Positions the button on the left edge */
}

.right-btn {
    right: -10px;
    /* Positions the button on the right edge */
}

/* end of carousel */


/* cards */
.cards {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-smooth: auto;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    display: flex;
    flex-wrap: nowrap;
    gap: 0 40px;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory; */
    width: 100%;
    max-width: 90%;
    margin: 5px auto 60px auto;
    padding: 5px 20px;
    box-sizing: border-box;
    /* scroll-behavior: smooth; */
    scrollbar-width: none;
}

.cards:hover{
    cursor: pointer;
}

.cards::-webkit-scrollbar {
    display: none;
}

figure {
    position: relative;
    display: flex;
    align-items: center;
    font-family: "Nunito Sans", sans-serif;
    justify-content: center;
    width: 375px;
    min-width: 375px;
    height: 667px;
    border-radius: 10px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;

    flex: 0 0 auto;
    scroll-snap-align: center;

    &:hover {
        transform: translateY(-5px);
        box-shadow:
            0 14px 28px rgba(0, 0, 0, 0.25),
            0 10px 10px rgba(0, 0, 0, 0.22);

        h2 {
            opacity: 0;
            transform: scale(0.7);
        }

        img {
            transform: scale(1.25);
        }

        figcaption {
            bottom: 0;
        }
    }

    h2 {
        position: absolute;
        top: 50px;
        left: 0;
        margin: 0;
        padding: 20px;
        backdrop-filter: blur(3px);
        color: var(--purple-secondary-color);
        background-color: rgba(255, 255, 255, 0.3);
        font-size: 40px;
        font-weight: 900;
        line-height: 1;
        opacity: 1;
        transform: scale(1);
        transition: 0.25s ease;
        z-index: 8;
    }

    img {
        height: 100%;
        transition: 0.25s;
    }

    figcaption {
        position: absolute;
        bottom: -34%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 30px;
        background-color: rgba(112, 3, 45, 0.82);
        /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
        color: white;
        line-height: 1;
        transition: 0.25s;

        h3 {
            margin: 0 0 20px;
            padding: 0;
        }

        p {
            font-size: 14px;
            line-height: 1.75;
            font-family: "Nunito Sans", sans-serif;
        }

        button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px 0 0;
            padding: 10px 30px;
            background-color: var(--purple-terciary-color);
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 14px;
            cursor: pointer;
        }

        button:hover {
            background-color: rgb(220, 0, 59);
        }
    }
}

.clinics_span {
    font-weight: 900;
    color: var(--purple-main-color);

}

/* =========================================
   CONTACT US SECTION
   ========================================= */

.red_asterisk {
    color: red;
}

.contactSection {
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    /* Background */
    background-image: url('assets/ContactCenter.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px 1px 20px 0px rgba(0, 0, 0, 0.5);
}

.contactContainer {
    width: 50%;
    max-width: 600px;
    background-color: rgba(247, 114, 160, 0.18);
    backdrop-filter: blur(3px);
    border: 1px solid white;
    border-radius: 45px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.contactTitle {
    font-family: "Nunito Sans", sans-serif;
    color: white;
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
}

.contactForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inputGroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.inputGroup label {
    font-family: "Nunito Sans", sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 10px;
    margin-top: 10px;
}

.inputGroup input,
.inputGroup textarea {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.85);
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
}

.inputGroup input::placeholder,
.inputGroup textarea::placeholder {
    color: #666;
    font-weight: 400;
}

.inputGroup input:focus,
.inputGroup textarea:focus {
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 101, 152, 0.4);
    transform: translateY(-2px);
}

.formSubmitBtn {
    border: none;
    cursor: pointer;
    margin-top: 20px;
    width: 50%;
    align-self: center;
}

.buttonContactUs span {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    margin: auto;
    /* Keeps it perfectly centered */
    display: inline-block;
}

.buttonContactUs span {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    margin: auto;
    /* Keeps it perfectly centered */
    display: inline-block;
}

/* FOOTER */

#immpact-footer {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    font-family: "Nunito Sans", sans-serif;
    background-color: var(--primary-color);
    border-top: 3px solid var(--purple-main-color);
    box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.4);
}

#immpact-footer .footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#immpact-footer .footer-top {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#immpact-footer .footer-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

#immpact-footer .footer-li {
    list-style: none;
}

#immpact-footer .footer-link {
    font-size: 1.1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--main-text-color);
    display: block;
    transition: color 0.3s, transform 0.3s;
}

#immpact-footer .footer-link:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0px 0px 8px rgba(255, 101, 152, 0.5);
    /* Matches your contact form glow */
}

#immpact-footer .footer-logo {
    width: 250px;
    height: auto;
    display: block;
}

#immpact-footer .footer-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

#immpact-footer .footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#immpact-footer .footer-social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#immpact-footer .footer-social-li {
    list-style: none;
}

#immpact-footer .footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--purple-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, transform 0.3s;
}

#immpact-footer .footer-social-link:hover {
    background-color: var(--purple-terciary-color);
    transform: scale(1.15);
}

#immpact-footer .footer-social-icon {
    width: 1rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* Forces the SVG icons to be pure white */
}

#immpact-footer .footer-copyright {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: #bababa;
    display: block;
}

#immpact-footer .footer-copyright-link {
    font-size: inherit;
    text-decoration: none;
    color: var(--main-text-color);
    transition: color 0.3s;
    font-weight: 800;
}

#immpact-footer .footer-copyright-link:hover {
    color: var(--purple-terciary-color);
}

/* Tablet and Desktop Layout - 768px */
@media only screen and (min-width: 48rem) {
    #immpact-footer .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }

    #immpact-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

}

/* PRICING PAGE */

/* =========================================
   GLOBAL OVERRIDES & VARIABLES (Pricing)
   ========================================= */
:root {
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--purple-secondary-color);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/* =========================================
   PRICING SECTION
   ========================================= */
#pricing-1790 {
    padding: var(--sectionPadding);
    padding-bottom: 10vw;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    width: 95%;
    margin: 0 auto 40px auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: "Nunito Sans", sans-serif;
}

#pricing-1790 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: clamp(3rem, 6vw, 4rem);
}

#pricing-1790 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

#pricing-1790 .cs-flex {
    display: flex;
    flex-direction: column;
}

#pricing-1790 .cs-title {
    margin: 0;
}

#pricing-1790 .cs-wrapper {
    width: 100%;
    max-width: 80rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
}

#pricing-1790 .cs-ul {
    margin: 1.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
    width: 30%;
}

#pricing-1790 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    max-width: 21.8125rem;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}

#pricing-1790 .cs-icon {
    width: 1.125rem;
    height: auto;
    display: block;
}

#pricing-1790 .cs-card-group {
    width: 100%;
    max-width: 57rem;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    margin: 0;
}

#pricing-1790 .cs-item {
    text-align: center;
    list-style: none;
    margin: 0;
    flex: 1;
    padding: clamp(2rem, 2vw, 2.5rem) clamp(1rem, 1.5vw, 2rem);
    background-color: #FFFFFF;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 25rem;
}

#pricing-1790 .cs-item:hover {
    transform: translateY(-5px);
}

#pricing-1790 .cs-item.cs-popular {
    background-color: #1A1A1A;
    padding: clamp(2rem, 2vw, 2.5rem) clamp(1rem, 1.5vw, 2rem);
    margin: 0;
}

#pricing-1790 .cs-item.cs-popular .cs-package,
#pricing-1790 .cs-item.cs-popular .cs-frequency,
#pricing-1790 .cs-item.cs-popular .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
}

#pricing-1790 .cs-item.cs-popular .cs-price {
    color: var(--bodyTextColorWhite);
}

#pricing-1790 .cs-item.cs-popular .cs-button-solid {
    transition: color 0.3s;
}

#pricing-1790 .cs-item.cs-popular .cs-button-solid:hover {
    color: var(--primary);
}

#pricing-1790 .cs-item.cs-popular .cs-button-solid:before {
    background-color: #fff;
}

#pricing-1790 .cs-package {
    font-size: clamp(0.8125rem, 1.4vw, 1rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-transform: uppercase;
    margin: 0 0 0.25rem 0;
    color: var(--bodyTextColor);
    display: block;
}

#pricing-1790 .cs-flex-wrapper {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

#pricing-1790 .cs-flex-wrapper:after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 232, 232, 0.2) 0%, #e8e8e8 53.78%, rgba(232, 232, 232, 0.2) 100%);
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

#pricing-1790 .cs-price {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
}

#pricing-1790 .cs-frequency {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
}

#pricing-1790 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 auto;
    color: var(--bodyTextColor);
}

#pricing-1790 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.5em;
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 2rem 0 0 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--purple-terciary-color);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    /* This stops the text from wrapping to a second line */
}

#pricing-1790 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
}

#pricing-1790 .cs-button-solid:hover:before {
    width: 100%;
}

#pricing-1790 .cs-graphic {
    display: none;
}

#pricing-1790 .cs-dark {
    display: none;
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
.logo-link {
    display: block;
    width: 100%;
    background-color: white;
    margin: -100px auto 0 auto;
    padding-top: 70px;
}

.logo-video {
    margin: 0 auto;
    height: 400px;
    /* Adjust this based on your video's proportions */
    width: auto;
    display: block;
    pointer-events: none;
    /* Prevents users from right-clicking to "save video" */
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1741 {
        padding: var(--sectionPadding);
        position: relative;
        background-color: white;
        font-family: "Nunito Sans", sans-serif;
    }

    #faq-1741 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #faq-1741 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #faq-1741 .cs-title {
        max-width: 15ch;
        margin: 0 0 2rem;
    }

    #faq-1741 .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-align: center;
        text-decoration: none;
        min-width: 9.375rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        background-color: var(--purple-secondary-color);
        color: #fff;
        display: inline-block;
        position: relative;
        z-index: 1;
    }

    #faq-1741 .cs-button-solid:before {
        content: "";
        width: 0%;
        height: 100%;
        background: #000;
        opacity: 1;
        border-radius: 0.25rem;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }

    #faq-1741 .cs-button-solid:hover:before {
        width: 100%;
    }

    #faq-1741 .cs-faq-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }

    #faq-1741 .cs-faq-item {
        list-style: none;
        width: 100%;
        /* clips all corners of the button that overlap the rounded border */
        overflow: hidden;
        transition: border-bottom 0.3s;
    }

    #faq-1741 .cs-faq-item.active .cs-button {
        background-color: var(--purple-terciary-color);
        color: var(--bodyTextColorWhite);
    }

    #faq-1741 .cs-faq-item.active .cs-button:before {
        background-color: var(--bodyTextColorWhite);
        transform: rotate(315deg);
    }

    #faq-1741 .cs-faq-item.active .cs-button:after {
        background-color: var(--bodyTextColorWhite);
        transform: rotate(-315deg);
    }

    #faq-1741 .cs-faq-item.active .cs-item-text {
        height: auto;
        /* 16px - 24px */
        padding: 1rem clamp(1rem, 2vw, 1.5rem);
        opacity: 1;
        border: 1px solid #e8e8e8;
    }

    #faq-1741 .cs-button {
        /* 16px - 20px */
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        font-weight: bold;
        line-height: 1.2em;
        text-align: left;
        width: 100%;
        padding: 1rem;
        padding-left: 3.25rem;
        background-color: transparent;
        color: var(--headerColor);
        border: 1px solid #e8e8e8;
        display: block;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }

    #faq-1741 .cs-button:hover {
        cursor: pointer;
    }

    #faq-1741 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        opacity: 1;
        display: block;
        position: absolute;
        top: 45%;
        left: 1.125rem;
        transform: rotate(45deg);
        transition: transform 0.5s;
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
    }

    #faq-1741 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        opacity: 1;
        display: block;
        position: absolute;
        top: 45%;
        left: 1.3125rem;
        transform: rotate(-45deg);
        transition: transform 0.5s;
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
    }

    #faq-1741 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        height: 0;
        margin: 0;
        /* clips the text so it doesn't show up */
        overflow: hidden;
        color: var(--bodyTextColor);
        opacity: 0;
        transition: opacity 0.3s, padding-bottom 0.3s;
    }

    #faq-1741 .cs-gallery {
        width: 100%;
        /* changes to 1720 at tablet */
        max-width: 36.5rem;
        margin: clamp(3rem, 6vw, 4rem) auto 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 1.5vw, 1.25rem);
    }

    #faq-1741 .cs-picture {
        /* 210px - 400px */
        min-height: clamp(13.125rem, 27vw, 25rem);
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }

    #faq-1741 .cs-picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #faq-1741 .cs-gallery {
        max-width: 107.5rem;
    }

    #faq-1741 .cs-picture {
        grid-column: span 1;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #faq-1741 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    #faq-1741 .cs-content {
        text-align: left;
        width: 40%;
        align-items: flex-start;
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #faq-1741 .cs-gallery {
        grid-template-columns: repeat(5, 1fr);
    }

    #faq-1741 .cs-picture {
        grid-column: span 1;
    }

    #faq-1741 .cs-picture:nth-of-type(4),
    #faq-1741 .cs-picture:nth-of-type(5) {
        grid-column: span 1;
    }
}

/* ADDED ROOT PARAMETERS FROM FAQ TEMPLATE */
:root {

    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}


.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--purple-terciary-color);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}