
    /* Local Font Faces */
    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/262f5da9e3ada9214549.woff2") format('woff2'),
        url("/assets/9f9811d46ada7b7e976f.woff") format('woff'),
        url("/assets/3d028c0e89339a1666aa.ttf") format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/e6e92d1559d013412bfa.woff2") format('woff2'),
        url("/assets/0fed32ca9da7a93b8d4f.woff") format('woff'),
        url("/assets/97499df1023711bb213a.ttf") format('truetype');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/bb1443cba6a493585c1d.woff2") format('woff2'),
        url("/assets/6dbc0be7750845f1df8a.woff") format('woff'),
        url("/assets/1575d41128e6586a6fc0.ttf") format('truetype');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/e89341346dd1d660dbf5.woff2") format('woff2'),
        url("/assets/a73ed10d5dc821973091.woff") format('woff'),
        url("/assets/057065e1847f8cd0f477.ttf") format('truetype');
        font-weight: 800;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/e26d77cceb13796c92ad.woff2") format('woff2'),
        url("/assets/c8f9dfbd5f4fb1955c17.woff") format('woff'),
        url("/assets/5f41fc8e6136d6a14236.ttf") format('truetype');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'OpenSans';
        src:url("/assets/6c9dfa279ddc292d4116.woff2") format('woff2'),
        url("/assets/e8cd5864806e5426f34f.woff") format('woff'),
        url("/assets/5661b92e94ab41ea2d98.ttf") format('truetype');
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }


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

    body {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero {
        position: relative;
        width: 100%;
        height: 550px;
        overflow: hidden;
    }

    .hero__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero__image {
        width: 108.5%;
        height: 160%;
        object-fit: cover;
        position: absolute;
        top: -151px;
        left: -89px;
    }

    .hero__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .hero__gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) -20%, rgba(0, 0, 0, 0) 100%);
    }

    /* Navigation */
    .nav {
        position: relative;
        z-index: 1002;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 29px 32px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .nav__logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav__logo-image {
        width: 144px;
        height: auto;
    }

    .nav__menu {
        display: flex;
        gap: 42px;
        list-style: none;
        align-items: center;
    }

    .nav__link {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        transition: opacity 0.3s;
    }

    .nav__link:hover {
        opacity: 0.8;
    }

    .nav__auth {
        display: flex;
        gap: 30px;
    }

    .nav__auth-link {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        transition: opacity 0.3s;
    }

    .nav__auth-link:hover {
        opacity: 0.8;
    }

    /* Logged-in User Dropdown */
    .nav__user {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav__user-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 4px 0;
        user-select: none;
    }

    .nav__avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .nav__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .nav__username {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #FFFFFF;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav__dropdown-arrow {
        flex-shrink: 0;
        transition: transform 0.2s;
    }

    .nav__user.open .nav__dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav__dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        min-width: 180px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        overflow: hidden;
    }

    .nav__user.open .nav__dropdown {
        display: block;
    }

    .nav__dropdown ul {
        list-style: none;
        margin: 0;
        padding: 8px 0;
    }

    .nav__dropdown ul li a {
        display: block;
        padding: 10px 20px;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: background 0.15s;
    }

    .nav__dropdown ul li a:hover {
        background: #f5f5f5;
    }

    /* Hero Content */
    .hero__content {
        position: relative;
        z-index: 5;
        text-align: center;
        padding-top: 140px;
    }

    .hero__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 8px;
    }

    .hero__title-wrapper {
        position: relative;
        display: inline-block;
        width: 593px;
        height: 125px;
    }


    .hero__title-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .hero__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 100px;
        font-weight: 800;
        line-height: 110px;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }

    .hero__title--gradient {
        position: relative;
        background: linear-gradient(180deg, #FFFFFF 23%, #D8EBFF 109%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
        z-index: 2;
    }

    .hero__title--stroke {
        position: absolute;
        top: 0;
        left: 0;
        color: transparent;
        -webkit-text-stroke: 8px #4BA6FF;
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
        z-index: 0;
    }

    .hero__description {
        font-size: 18px;
        font-weight: 600;
        line-height: 32px;
        color: #FFFFFF;
        margin-top: 124px;
        max-width: 497px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Part 2 Section */
    .part2 {
        max-width: 1440px;
        margin: 0 auto;
        padding: 59px 220px;
        display: flex;
        gap: 23px;
        align-items: flex-start;
    }

    .part2__image-container {
        flex-shrink: 0;
    }

    .part2__image {
        width: 487px;
        height: 330px;
        border-radius: 12px;
        object-fit: cover;
    }

    .part2__content {
        flex: 1;
        padding-top: 0;
    }

    .part2__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #4BA6FF;
        margin-bottom: 17px;
        line-height: 1.2;
    }

    .part2__item {
        margin-bottom: 47px;
    }

    .part2__item:last-child {
        margin-bottom: 0;
    }

    .part2__number {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 60px;
        font-weight: 800;
        line-height: 32px;
        color: #EDF6FF;
    }

    .part2__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #0f0f0f;
        margin-bottom: 8px;
    }

    .part2__description {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.4;
        color: #000000;
        max-width: 461px;
    }

    /* Part 3 Section - paint_2:475, paint_2:216, font_2:485, effect_2:126, paint_2:131, font_2:276 */
    .part3 {
        max-width: 1440px;
        margin: 0 auto;
        height: 491px;
        position: relative;
        display: flex;
        align-items: center;
        padding: 81px 222px;
        gap: 51px;
    }

    .part3__background {
        position: absolute;
        top: 1px;
        left: 0;
        width: 100%;
        height: 490px;
        background-color: rgba(216, 216, 216, 0.2); /* paint_2:475 */
        z-index: 0;
    }

    .part3__content {
        position: relative;
        z-index: 1;
        flex: 1;
        max-width: 454px;
    }

    .part3__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:485 */
        font-size: 36px;
        font-weight: 700;
        color: #4BA6FF; /* paint_2:216 */
        margin-bottom: 32px;
        line-height: auto;
    }

    .part3__text {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:276 */
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        margin-bottom: 32px;
    }

    .part3__image-container {
        position: relative;
        z-index: 1;
        flex-shrink: 0;
    }

    .part3__image {
        width: 487px;
        height: 330px;
        border-radius: 12px;
        object-fit: cover;
    }

    /* Part 4 Section - paint_2:234, font_2:485, effect_2:126, paint_2:131, font_2:276, paint_2:216, font_2:357 */
    .part4 {
        max-width: 1440px;
        margin: 0 auto;
        height: 318px;
        padding: 61px 270px;
        text-align: center;
    }

    .part4__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:485 */
        font-size: 36px;
        font-weight: 700;
        color: #215088; /* paint_2:234 */
        margin-bottom: 32px;
        line-height: auto;
    }

    .part4__description {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:276 */
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        margin-bottom: 32px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .part4__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:357 */
        font-size: 24px;
        font-weight: 600;
        font-style: italic;
        line-height: 32px;
        color: #4BA6FF; /* paint_2:216 */
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Part 5 Section - paint_2:475, paint_2:234, font_2:232, paint_2:118, effect_2:404, font_2:189, font_2:452 */
    .part5 {
        max-width: 1440px;
        margin: 0 auto;
        height: 578px;
        position: relative;
        padding: 80px 220px 20px;
    }

    .part5__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 558px;
        background-color: rgba(216, 216, 216, 0.2); /* paint_2:475 */
        z-index: 0;
    }

    .part5__title {
        position: relative;
        z-index: 1;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:232 */
        font-size: 36px;
        font-weight: 800;
        color: #215088; /* paint_2:234 */
        text-align: center;
        margin-bottom: 32px;
        line-height: auto;
    }

    .part5__cards {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 35px;
        justify-content: center;
    }

    .part5__card {
        width: 310px;
        background-color: #FFFFFF; /* paint_2:118 */
        border-radius: 12px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); /* effect_2:404 */
        overflow: hidden;
    }

    .part5__card-image {
        width: 310px;
        height: 148px;
        object-fit: cover;
        border-radius: 12px 12px 0px 0px;
    }

    .part5__card-content {
        padding: 24px 12px 15px;
        text-align: center;
    }

    .part5__card-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:189 */
        font-size: 22px;
        font-weight: 700;
        line-height: 30px;
        color: #000000; /* paint_2:131 */
        margin-bottom: 15px;
    }

    .part5__card-description {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:452 */
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
    }

    /* Part 6 Section - paint_2:234, font_2:232, effect_2:126, paint_2:131, font_2:276, font_2:285, paint_2:368, font_2:709, paint_2:141, paint_2:177 */
    .part6 {
        max-width: 1440px;
        margin: 0 auto;
        height: 682px;
        padding: 54px 220px 0;
    }

    .part6__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:232 */
        font-size: 36px;
        font-weight: 800;
        color: #215088; /* paint_2:234 */
        text-align: center;
        margin-bottom: 8px;
        line-height: auto;
    }

    .part6__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:276 */
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        text-align: center;
        margin-bottom: 48px;
        max-width: 776px;
        margin-left: auto;
        margin-right: auto;
    }

    .part6__accordion {
        max-width: 1000px;
        margin: 0 auto;
    }

    .part6__item {
        border-bottom: 1px solid #D8D8D8; /* paint_2:141 */
    }

    .part6__question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 26px 32px 26px 0;
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
    }

    .part6__question-content {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
    }

    .part6__icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .part6__question-text {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:285 */
        font-size: 18px;
        font-weight: 700;
        line-height: 26px;
        color: #000000; /* paint_2:131 */
    }

    .part6__toggle {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .part6__toggle svg {
        width: 100%;
        height: 100%;
    }

    .part6__item.active .part6__toggle {
        transform: rotate(180deg);
    }

    .part6__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .part6__item.active .part6__answer {
        max-height: 500px;
    }

    .part6__answer-content {
        padding: 0 0 32px 56px;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:709 */
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        color: rgba(0, 0, 0, 0.5); /* paint_2:368 */
    }

    /* Part 7 Section - paint_2:234, font_2:232, effect_2:126, paint_2:131, font_2:276, paint_2:118, paint_2:216, effect_2:404 */
    .part7 {
        max-width: 1440px;
        margin: 0 auto;
        height: 636px;
        padding: 0 209px;
    }

    .part7__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:232 */
        font-size: 36px;
        font-weight: 800;
        color: #215088; /* paint_2:234 */
        text-align: center;
        margin-bottom: 8px;
        line-height: auto;
    }

    .part7__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:276 */
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        text-align: center;
        margin-bottom: 63px;
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .part7__cards {
        display: flex;
        gap: 35px;
        justify-content: center;
        position: relative;
    }

    .part7__card {
        width: 310px;
        height: 441px;
        background-color: #FFFFFF; /* paint_2:118 */
        border: 2px solid #4BA6FF; /* paint_2:216 */
        border-radius: 12px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); /* effect_2:404 */
        overflow: visible;
        position: relative;
    }

    .part7__card-header {
        height: 63px;
        background-color: #4BA6FF; /* paint_2:216 */
        border-radius: 12px 12px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .part7__card-number {
        position: absolute;
        left: 0;
        top: 0;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 60px;
        font-weight: 800;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.15); /* paint_2:332 */
    }

    .part7__card-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:0532 */
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF; /* paint_2:118 */
        position: relative;
        z-index: 1;
    }

    .part7__card--large .part7__card-header {
        height: 80px;
    }

    .part7__card--large .part7__card-title {
        font-size: 24px;
        line-height: 32px;
    }

    .part7__card--large {
        height: 441px;
    }

    .part7__card-content {
        padding: 24px 26px;
    }

    .part7__feature {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .part7__feature-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .part7__feature-text {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:0502 */
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        color: #000000; /* paint_2:131 */
        flex: 1;
    }

    .part7__feature--negative .part7__feature-text {
        color: rgba(0, 0, 0, 0.5); /* paint_2:368 */
    }

    .part7__diseases {
        background-color: #EDF6FF; /* paint_2:138 */
        border-radius: 8px;
        padding: 8px 16px;
        margin-top: 24px;
    }

    .part7__diseases-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 8px;
        line-height: 24px;
    }

    .part7__diseases-row:last-child {
        margin-bottom: 0;
    }

    .part7__disease {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:0488 */
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        color: #4BA6FF; /* paint_2:216 */
        white-space: nowrap;
    }

    .part7__disease--semibold {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:0515 */
        font-size: 15px;
        font-weight: 600;
        line-height: 24px;
        color: #4BA6FF; /* paint_2:216 */
        white-space: nowrap;
    }

    .part7__divider {
        color: #4BA6FF; /* paint_2:216 */
        font-size: 16px;
        line-height: 24px;
    }

    .part7__badge {
        position: absolute;
        top: -12px;
        right: -8px;
        transform: rotate(9.66deg);
        background: linear-gradient(112deg, #4BA6FF 17%, #C496F9 100%); /* paint_2:467 */
        border: 1.6px solid #FFFFFF; /* paint_2:118 */
        border-radius: 64px;
        padding: 8px 13px;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:1085 */
        font-size: 12.8px;
        font-weight: 700;
        line-height: 20.8px;
        color: #FFFFFF; /* paint_2:118 */
        white-space: nowrap;
        z-index: 10;
    }

    .part7__card--large {
        position: relative;
    }

    /* Part 8 Section - paint_2:234, font_2:232, paint_2:138, paint_2:131, font_2:173, paint_2:216, paint_2:206, font_2:168, font_2:738 */
    .part8 {
        max-width: 1440px;
        margin: 0 auto;
        height: 324px;
        padding: 14px 220px 0;
    }

    .part8__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:232 */
        font-size: 36px;
        font-weight: 800;
        color: #215088; /* paint_2:234 */
        text-align: center;
        margin-bottom: 32px;
        line-height: auto;
    }

    .part8__grid {
        display: grid;
        grid-template-columns: repeat(2, 490px);
        gap: 20px 20px;
        justify-content: center;
    }

    .part8__card {
        width: 490px;
        height: 90px;
        background-color: #EDF6FF; /* paint_2:138 */
        border-radius: 12px;
        display: flex;
        align-items: center;
        padding: 24px 32px;
        gap: 22px;
    }

    .part8__icon-circle {
        width: 42px;
        height: 42px;
        background-color: #4BA6FF; /* paint_2:216 */
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .part8__icon {
        width: 24px;
        height: 24px;
    }

    .part8__card-content {
        flex: 1;
    }

    .part8__card-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:173 */
        font-size: 18px;
        font-weight: 700;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
    }

    .part8__card-subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:738 */
        font-size: 15px;
        font-weight: 400;
        font-style: italic;
        line-height: auto;
        color: #000000; /* paint_2:131 */
    }

    /* Part 10 Section - Exclusive Testing Discounts */
    .part10 {
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 220px;
    }

    .part10__header {
        text-align: center;
        margin-bottom: 40px;
    }

    .part10__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 36px;
        font-weight: 800;
        color: #215088;
        margin-bottom: 16px;
        line-height: 1.2;
    }
 
    .part10__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000;
        max-width: 700px;
        margin: 0 auto;
    }

    .part10__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .part10__card {
        background-color: #FFFFFF;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .part10__card-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #000000;
    }

    .part10__card-subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #000000;
    }

    .part10__coupon {
        background-color: #F0F7FF;
        border: 1px dashed #4BA6FF;
        border-radius: 8px;
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .part10__coupon-label {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #215088;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .part10__coupon-code {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .part10__coupon-text {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #1E88E5;
        letter-spacing: 1px;
    }

    .part10__coupon-copy {
        width: 16px;
        height: 16px;
        cursor: pointer;
        flex-shrink: 0;
        transition: opacity 0.2s ease;
    }

    .part10__coupon-copy:hover {
        opacity: 0.7;
    }

    /* Copied feedback */
    .part10__coupon-text.copied {
        color: #2E7D32 !important;
        font-weight: 700;
    }

    .part10__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        height: 48px;
        background-color: #4BA6FF;
        border-radius: 24px;
        cursor: pointer;
        transition: opacity 0.3s;
        text-decoration: none;
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
        box-sizing: border-box;
    }

    .part10__btn:hover {
        opacity: 0.9;
    }

    .part10__btn-icon {
        width: 24px;
        height: 24px;
    }

    .part10__disclaimer {
        max-width: 640px;
        margin: 52px auto 0;
        padding-top: 12px;
        border-top: 1px solid #F1F8FF;
        text-align: center;
    }

    .part10__disclaimer p {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: #999999;
        font-style: italic;
        margin: 0;
    }

    /* Part 9 Section - paint_2:234, font_2:232, paint_2:396, effect_2:126, paint_2:131, font_2:276, paint_2:118, font_2:173, paint_2:216, font_2:382, paint_2:206, paint_2:631, font_2:636, font_2:452 */
    .part9 {
        max-width: 1440px;
        margin: 0 auto;
        padding: 29px 220px 60px;
    }

    .part9__title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:232 */
        font-size: 36px;
        font-weight: 800;
        color: #215088; /* paint_2:234 */
        text-align: center;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .part9__subtitle {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:276 */
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        text-align: center;
        margin-bottom: 32px;
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }

    .part9__container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .part9__featured {
        width: 100%;
        max-width: 1000px;
        height: 338px;
        border-radius: 16px;
        background-color: #F7F7F7; /* paint_2:396 */
        margin-bottom: 24px;
        position: relative;
        overflow: hidden;
    }

    .part9__featured-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .part9__featured-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 105px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.502) 100%); /* paint_2:631 */
        border-radius: 0px 0px 16px 16px;
        padding: 24px;
    }

    .part9__featured-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:636 */
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        color: #FFFFFF; /* paint_2:118 */
        margin-bottom: 8px;
    }

    .part9__featured-description {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:452 */
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        color: #FFFFFF; /* paint_2:118 */
    }

    .part9__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 1000px;
    }

    .part9__card {
        width: 100%;
        min-height: 82px;
        background-color: #FFFFFF; /* paint_2:118 */
        border-radius: 12px;
        display: flex;
        align-items: center;
        padding: 25px 32px;
        gap: 16px;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease;
        text-decoration: none;
    }

    .part9__card:hover {
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    }

    .part9__card-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .part9__card-title {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:173 */
        font-size: 18px;
        font-weight: 700;
        line-height: 32px;
        color: #000000; /* paint_2:131 */
        flex: 1;
    }

    .part9__card-arrow {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        transform: rotate(-90deg);
    }

    .part9__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 308px;
        height: 72px;
        background-color: #4BA6FF; /* paint_2:216 */
        border-radius: 80px;
        margin: 56px auto 0;
        cursor: pointer;
        transition: opacity 0.3s;
        text-decoration: none;
    }

    .part9__cta:hover {
        opacity: 0.9;
    }

    .part9__cta-text {
        font-family: 'OpenSans', Arial, Helvetica, sans-serif; /* font_2:382 */
        font-size: 18px;
        font-weight: 600;
        line-height: 32px;
        color: #FFFFFF; /* paint_2:118 */
    }

    .part9__cta-icon {
        width: 24px;
        height: 24px;
    }

    /* Tablet and Small Desktop Responsive */
    @media (max-width: 1400px) {
        .part2 {
            padding: 59px 80px;
        }

        .part3 {
            padding: 81px 80px;
        }

        .part4 {
            padding: 61px 80px;
        }

        .part5 {
            padding: 80px 80px 20px;
        }

        .part6 {
            padding: 54px 80px 0;
        }

        .part7 {
            padding: 0 80px;
        }

        .part7__cards {
            flex-wrap: wrap;
            justify-content: center;
        }

        .part7__badge {
            top: -10px;
            right: -6px;
        }

        .part8 {
            padding: 14px 80px 0;
        }

        .part8__grid {
            grid-template-columns: repeat(2, 1fr);
            max-width: 800px;
            margin: 0 auto;
        }

        .part8__card {
            width: 100%;
        }

        .part9 {
            padding: 29px 80px 60px;
        }
    }

    @media (max-width: 1200px) {
        .part2 {
            padding: 50px 60px;
            gap: 30px;
        }

        .part2__image {
            width: 400px;
            height: 280px;
        }

        .part2__title {
            font-size: 32px;
        }

        .part2__item {
            margin-bottom: 35px;
        }

        .part3 {
            padding: 60px 60px;
            gap: 40px;
        }

        .part3__image {
            width: 400px;
            height: 280px;
        }

        .part3__title {
            font-size: 32px;
        }

        .part3__text {
            font-size: 17px;
        }

        .part4 {
            padding: 50px 60px;
            height: auto;
        }

        .part4__title {
            font-size: 32px;
        }

        .part4__description {
            font-size: 17px;
        }

        .part4__subtitle {
            font-size: 22px;
        }

        .part5 {
            padding: 60px 60px 20px;
            height: auto;
        }

        .part5__title {
            font-size: 32px;
        }

        .part5__cards {
            gap: 25px;
        }

        .part6 {
            padding: 50px 60px 0;
            height: auto;
        }

        .part6__title {
            font-size: 32px;
        }

        .part6__subtitle {
            font-size: 17px;
        }

        .part7 {
            padding: 40px 60px;
            height: auto;
        }

        .part7__title {
            font-size: 32px;
        }

        .part7__subtitle {
            font-size: 17px;
        }

        .part7__cards {
            gap: 25px;
        }

        .part8 {
            padding: 40px 60px;
            height: auto;
        }

        .part8__title {
            font-size: 32px;
        }

        .part10 {
            padding: 50px 60px;
        }

        .part10__title {
            font-size: 32px;
        }

        .part10__subtitle {
            font-size: 17px;
        }

        .part10__grid {
            grid-template-columns: 1fr;
            max-width: 500px;
        }

        .part10__card {
            padding: 24px;
        }

        .part10__btn {
            height: 48px;
            font-size: 16px;
        }

        .part9 {
            padding: 40px 60px;
        }

        .part9__title {
            font-size: 32px;
        }

        .part9__subtitle {
            font-size: 17px;
            max-width: 700px;
        }

        .part9__featured {
            height: 280px;
        }

        .part9__grid {
            gap: 20px;
        }

        .part9__card {
            padding: 20px 24px;
        }
    }

    @media (max-width: 1024px) {
        .part2 {
            flex-direction: column;
            padding: 40px 40px;
        }

        .part2__image {
            width: 100%;
            max-width: 487px;
            height: auto;
        }

        .part3 {
            flex-direction: column-reverse;
            padding: 40px 40px;
            height: auto;
        }

        .part3__image {
            width: 100%;
            max-width: 487px;
            height: auto;
        }

        .part4 {
            padding: 40px 40px;
        }

        .part5 {
            padding: 40px 40px 20px;
        }

        .part5__cards {
            flex-direction: column;
            align-items: center;
        }

        .part5__card {
            width: 100%;
            max-width: 400px;
        }

        .part5__card-image {
            width: 100%;
        }

        .part6 {
            padding: 40px 40px 0;
        }

        .part7 {
            padding: 40px 40px;
        }

        .part7__cards {
            flex-direction: column;
            align-items: center;
        }

        .part7__card {
            width: 100%;
            max-width: 400px;
        }

        .part8 {
            padding: 40px 40px;
        }

        .part8__grid {
            grid-template-columns: 1fr;
            max-width: 490px;
        }

        .part10 {
            padding: 40px 40px;
        }

        .part10__title {
            font-size: 28px;
        }

        .part10__subtitle {
            font-size: 16px;
            line-height: 28px;
        }

        .part10__grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }

        .part10__card {
            padding: 20px;
            gap: 16px;
        }

        .part10__card-title {
            font-size: 20px;
        }

        .part10__card-subtitle {
            font-size: 14px;
            line-height: 20px;
        }

        .part10__coupon {
            padding: 12px 16px;
        }

        .part10__coupon-text {
            font-size: 18px;
        }

        .part10__btn {
            height: 48px;
            font-size: 16px;
        }

        .part10__disclaimer {
            margin-top: 24px;
            padding-top: 16px;
        }

        .part10__disclaimer p {
            font-size: 11px;
            line-height: 16px;
        }

        .part9 {
            padding: 40px 40px;
        }
    }

    /* Mobile Menu Styles */
    .nav__hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .nav__hamburger-line {
        width: 24px;
        height: 2px;
        background-color: #FFFFFF;
        transition: all 0.3s ease;
    }

    .nav__mobile-menu {
        display: none;
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        max-height: 70vh;
        background-color: rgba(33, 80, 136, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 30px 40px;
        transition: bottom 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
    }

    .nav__mobile-menu.active {
        bottom: 0;
    }

    .nav__mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav__mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav,
        .part2,
        .part3,
        .part4,
        .part5,
        .part6,
        .part7,
        .part8,
        .part9 {
            max-width: 100%;
        }

        .part2 {
            flex-direction: column;
            padding: 40px 20px;
            gap: 30px;
        }

        .part2__image {
            width: 100%;
            height: auto;
        }

        .part2__content {
            max-width: 100%;
        }

        .part2__title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .part2__number {
            font-size: 48px;
        }

        .part2__subtitle {
            font-size: 16px;
        }

        .part2__description {
            font-size: 16px;
        }

        .part2__item {
            margin-bottom: 35px;
        }

        .part3 {
            height: auto;
            flex-direction: column-reverse;
            padding: 40px 20px;
            gap: 30px;
        }

        .part3__content {
            max-width: 100%;
        }

        .part3__title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .part3__text {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 20px;
        }

        .part3__image {
            width: 100%;
            height: auto;
        }

        .part4 {
            height: auto;
            padding: 40px 20px;
        }

        .part4__title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .part4__description {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 20px;
        }

        .part4__subtitle {
            font-size: 18px;
            line-height: 28px;
        }

        .part5 {
            height: auto;
            padding: 40px 20px;
        }

        .part5__title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .part5__cards {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .part5__card {
            width: 100%;
            max-width: 310px;
            height: auto;
        }

        .part5__card-image {
            width: 100%;
        }

        .part6 {
            height: auto;
            padding: 40px 20px;
        }

        .part6__title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .part6__subtitle {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 30px;
        }

        .part6__question {
            padding: 20px 0;
        }

        .part6__question-content {
            gap: 16px;
        }

        .part6__question-text {
            font-size: 16px;
            line-height: 24px;
        }

        .part6__answer-content {
            padding: 0 0 20px 40px;
            font-size: 16px;
            line-height: 24px;
        }

        .part7 {
            height: auto;
            padding: 40px 20px;
        }

        .part7__title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .part7__subtitle {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 40px;
        }

        .part7__cards {
            flex-direction: column;
            gap: 20px;
        }

        .part7__card {
            width: 100%;
            height: auto;
        }

        .part7__card--large {
            height: auto;
        }

        .part7__badge {
            top: -10px;
            right: -5px;
            font-size: 11px;
            padding: 6px 10px;
        }

        .part8 {
            height: auto;
            padding: 40px 20px;
        }

        .part8__title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .part8__grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .part8__card {
            width: 100%;
            height: auto;
            min-height: 90px;
            padding: 20px;
            gap: 16px;
        }

        .part8__icon-circle {
            width: 36px;
            height: 36px;
        }

        .part8__icon {
            width: 20px;
            height: 20px;
        }

        .part8__card-title {
            font-size: 16px;
            line-height: 28px;
        }

        .part8__card-subtitle {
            font-size: 14px;
        }

        .part10 {
            padding: 40px 20px;
        }

        .part10__header {
            margin-bottom: 30px;
        }

        .part10__title {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .part10__subtitle {
            font-size: 15px;
            line-height: 26px;
            max-width: 320px;
        }

        .part10__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .part10__card {
            padding: 20px;
            gap: 16px;
            border-radius: 12px;
        }

        .part10__card-title {
            font-size: 20px;
        }

        .part10__card-subtitle {
            font-size: 14px;
            line-height: 20px;
        }

        .part10__coupon {
            padding: 12px 16px;
        }

        .part10__coupon-label {
            font-size: 11px;
        }

        .part10__coupon-text {
            font-size: 16px;
        }

        .part10__coupon-copy {
            width: 20px;
            height: 20px;
        }

        .part10__btn {
            height: 48px;
            font-size: 16px;
        }

        .part10__btn-icon {
            width: 20px;
            height: 20px;
        }

        .part9 {
            padding: 40px 20px;
        }

        .part9__title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .part9__subtitle {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 30px;
            padding: 0;
        }

        .part9__container {
            padding: 0;
        }

        .part9__featured {
            width: 100%;
            height: auto;
            min-height: 250px;
            margin-bottom: 20px;
        }

        .part9__featured-overlay {
            height: auto;
            min-height: 90px;
            padding: 16px;
        }

        .part9__featured-title {
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 6px;
        }

        .part9__featured-description {
            font-size: 13px;
            line-height: 24px;
        }

        .part9__grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .part9__card {
            width: 100%;
            min-height: 70px;
            padding: 20px;
            gap: 12px;
        }

        .part9__card-icon {
            width: 20px;
            height: 20px;
        }

        .part9__card-title {
            font-size: 16px;
            line-height: 28px;
        }

        .part9__card-arrow {
            width: 20px;
            height: 20px;
        }

        .part9__cta {
            width: 100%;
            max-width: 308px;
            height: 60px;
            margin-top: 40px;
        }

        .part9__cta-text {
            font-size: 16px;
            line-height: 28px;
        }

        .part9__cta-icon {
            width: 20px;
            height: 20px;
        }

        .hero {
            height: auto;
            height: 252px;
        }

        .nav {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .nav__hamburger {
            display: flex;
        }

        .nav__menu,
        .nav__auth {
            display: none;
        }

        .nav__user {
            display: none;
        }

        .nav__mobile-menu,
        .nav__mobile-overlay {
            display: block;
        }

        .nav__mobile-overlay {
            pointer-events: none;
        }

        .nav__mobile-overlay.active {
            pointer-events: auto;
        }

        .nav__mobile-menu .nav__menu {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 0;
        }

        .nav__mobile-menu .nav__menu li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav__mobile-menu .nav__link {
            display: block;
            padding: 14px 0;
            font-size: 16px;
            text-transform: capitalize;
            text-align: center;
        }

        .nav__mobile-menu .nav__auth {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .nav__mobile-menu .nav__auth-link {
            display: block;
            padding: 14px 0;
            text-align: center;
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0;
            font-size: 16px;
            text-transform: capitalize;
        }

        .nav__mobile-menu .nav__auth-link:last-child {
            border-bottom: none;
        }

        .hero__content {
            padding-top: 37px;
            padding-bottom: 40px;
        }

        .hero__subtitle {
            font-size: 18px;
        }

        .hero__title-wrapper {
            width: 296px;
            height: 62px;
        }

        .hero__title {
            font-size: 50px;
            line-height: 55px;
        }


        .hero__title--stroke {
            -webkit-text-stroke: 4px #4BA6FF;
        }

        .hero__description {
            font-size: 12px;
            line-height: 24px;
            padding: 8px 20px;
            margin-top: 31px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px) saturate(100%);
        }

        .hero__image {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-position: center;
        }
    }

    @media (max-width: 480px) {
        .nav__logo-image {
            width: 100px;
        }

        .nav__menu {
            font-size: 14px;
            gap: 15px;
        }

        .nav__link,
        .nav__auth-link {
            font-size: 14px;
        }

        .hero__title-wrapper {
            width: 237px;
            height: 50px;
        }

        .hero__title {
            font-size: 40px;
            line-height: 44px;
        }

        .hero__subtitle {
            font-size: 16px;
        }

        .part10__disclaimer {
            margin-top: 20px;
            padding-top: 14px;
        }

        .part10__disclaimer p {
            font-size: 11px;
            line-height: 16px;
        }

    }
