/* Import Outfit font to match main app theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --header_vw: 6.5vw;
    --normal_text_vw: 2.5vw;
    --accent_1: #ff9011;
    --alice_blue: #eaf2fb;
    --salt: #f8f9fa;
    
    /* Ambient theme colors */
    --ambient-primary: #7877c6;
    --ambient-accent-coral: rgba(255, 119, 115, 0.08);
    --ambient-accent-teal: rgba(78, 205, 196, 0.06);
    --ambient-accent-purple: rgba(120, 119, 198, 0.12);
    --ambient-surface: #ffffff;
    --ambient-surface-muted: #f7fafc;
  }

  * {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  /* Reset Webflow button class and link styling for buttons */
  a.w-button,
  a.button,
  a.button-2 {
    text-decoration: none;
  }

  a.w-button:hover,
  a.button:hover,
  a.button-2:hover {
    text-decoration: none;
  }
  
  .standard_width_container {
    flex-flow: column;
    width: 100%;
    max-width: 1248px;
    padding-left: 32px;
    padding-right: 32px;
    display: block;
    overflow: visible;
  }
  
  .standard_width_container.mobile_hero {
    display: none;
  }
  
  .standard_width_container.privacy {
    display: block;
  }
  
  .header_container {
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    margin: 0;
    display: flex;
    width: 95%;
    max-width: none;
    height: 84px;
  }
  
  .header_logo_image {
    width: auto;
    height: 32px;
    padding: 0;
    margin: 0;
    display: block;
  }
  
  .header_logo {
    display: flex;
    align-items: center;
    height: 32px;
  }
  
  .sign_in_top {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 32px;
  }
  
  /* Sign in secondary button - 32px height */
  .button-2 {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ambient-primary);
    border-radius: 8px;
    height: 32px;
    padding: 0 16px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(120, 119, 198, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(120, 119, 198, 0.1);
    box-sizing: border-box;
  }
  
  .button-2:hover {
    color: var(--ambient-primary);
    background: #ffffff;
    border-color: var(--ambient-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.2);
  }
  
  /* Get Started primary button - 32px height */
  .button-get-started {
    background: linear-gradient(135deg, var(--ambient-primary) 0%, #6366f1 100%);
    color: white;
    border-radius: 8px;
    height: 32px;
    padding: 0 16px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.3);
    box-sizing: border-box;
  }
  
  .button-get-started:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(120, 119, 198, 0.4);
  }
  
  .div-block {
    height: 50px;
    padding-left: 122px;
  }
  
  .test2 {
    width: 500px;
    height: 50px;
    padding-left: 85px;
  }
  
  .body {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    margin: 0;
  }
  
  .column_container {
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 2rem;
  }
  
  .column_50 {
    width: 50%;
  }
  
  .column_60 {
    width: 58%;
    max-height: 560px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .column_60.absolute {
    width: 65%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hero_text_header {
    margin-bottom: 16px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #2d3748;
  }
  
  .column_40 {
    flex-flow: column;
    width: 35%;
    min-width: 320px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
  }
  
  .text-block-2 {
    padding-top: 20px;
    font-size: 1rem;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.4;
  }

  /* Hero feature list */
  .hero_feature_list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero_feature_item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.4;
  }

  .hero_feature_icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .hero_button_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .button {
    background: linear-gradient(135deg, #7877c6 0%, #6366f1 100%);
    color: white;
    border-radius: 12px;
    margin-top: 40px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.35);
  }

  .button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.45);
    background: linear-gradient(135deg, #8584d1 0%, #7578f5 100%);
  }
  
  .background_color_lb {
    background: 
      radial-gradient(ellipse at 30% 20%, var(--ambient-accent-purple) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, var(--ambient-accent-teal) 0%, transparent 50%),
      linear-gradient(180deg, #f0f4ff 0%, #e8f0fb 100%);
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    display: flex;
    overflow-x: hidden;
  }
  
  .background_color_salt {
    background: 
      radial-gradient(ellipse at 20% 80%, var(--ambient-accent-purple) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, var(--ambient-accent-coral) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 50%, var(--ambient-accent-teal) 0%, transparent 70%),
      linear-gradient(180deg, #ffffff 0%, var(--ambient-surface-muted) 100%);
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    display: flex;
    overflow-x: hidden;
  }
  
  .text-block-3 {
    text-align: center;
    height: 20px;
  }
  
  .text-block-4 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
  }
  
  .bold-text {
    font-size: 50px;
  }
  
  .card_carousel {
    margin-bottom: 0;
    padding-bottom: 90px;
    overflow: hidden;
  }
  
  .slide {
    background-color: #d1dfef;
    border-radius: 20px;
    width: 300px;
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .slide_contents {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 22px;
    padding-right: 22px;
    display: flex;
  }
  
  .image {
    height: 33%;
  }
  
  .slide_image {
    height: 20%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .slide_heading {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
  }
  
  .slide_text {
    font-size: 16px;
    line-height: 22px;
  }
  
  .slider {
    background-color: #ddd0;
    height: 400px;
  }
  
  .section_header_text {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
    line-height: 70px;
  }
  
  
  .image-2 {
    width: 80%;
  }
  
  .centering_div_h {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .checkmark_text {
    font-size: 24px;
  }
  
  .checkmark_container {
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
  }
  
  .checkmark_icon {
    color: #1d262f;
    padding-left: 40px;
    padding-right: 20px;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
  }
  
  .centering_div_v {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .section_end {
    padding-bottom: 60px;
  }
  
  .hero_text_container {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 300px;
    max-height: 500px;
    display: flex;
  }
  
  .image-3 {
    width: 100%;
    display: inline-block;
    border-radius: 16px;
    box-shadow: 
      0 25px 50px -12px rgba(0, 0, 0, 0.15),
      0 12px 24px -8px rgba(120, 119, 198, 0.2);
  }

  /* Mobile Hero Carousel - sliding carousel between images */
  .mobile-hero-carousel {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
      0 25px 50px -12px rgba(0, 0, 0, 0.15),
      0 12px 24px -8px rgba(120, 119, 198, 0.2);
  }

  .mobile-hero-image {
    width: 100%;
    display: block;
  }

  .mobile-hero-image-1 {
    position: relative;
    animation: slideInOut1 12s ease-in-out infinite;
  }

  .mobile-hero-image-2 {
    position: absolute;
    top: 0;
    left: 0;
    animation: slideInOut2 12s ease-in-out infinite;
  }

  @keyframes slideInOut1 {
    0%, 42% {
      transform: translateX(0);
    }
    50%, 92% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes slideInOut2 {
    0%, 42% {
      transform: translateX(100%);
    }
    50%, 92% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .icon, .icon-2 {
    color: #000;
    width: 40px;
    height: 40px;
    font-weight: 700;
  }
  
  .right-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    inset: 440px 2% 0% auto;
  }
  
  .left-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    inset: 440px 8% 0% auto;
  }
  
  .mask {
    width: 370px;
    overflow: visible;
  }
  
  .swiper {
    margin-bottom: 0;
    padding-bottom: 90px;
    overflow: hidden;
  }
  
  .swiper.swiper-features {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
  }
  
  .swiper-wrapper {
    display: flex;
  }
  
  .swiper-wrapper.swiper-features {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 400px;
    overflow: visible;
  }
  
  .swiper-slide {
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 20px;
    width: 320px;
    height: 100%;
    border: 1px solid rgba(120, 119, 198, 0.1);
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.08);
  }
  
  .div-block-2 {
    position: fixed;
    inset: 0% auto auto 0%;
  }
  
  .signupoverlay {
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
  }
  
  .signupmainblock {
    background-color: var(--salt);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 60%;
    margin: auto;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    position: absolute;
    inset: 0%;
  }
  
  .exitbutton {
    padding: 20px;
    position: absolute;
    inset: 0% 0% auto auto;
  }
  
  .image-7 {
    position: static;
    inset: 0% 0% auto auto;
  }
  
  .success-message {
    background-color: #00860066;
    border-radius: 8px;
    width: auto;
    position: static;
    inset: auto 0% 0% auto;
  }
  
  .field-label {
    font-size: 18px;
  }
  
  .getstartedformtextandbuttoncontainer {
    display: block;
    position: static;
  }
  
  .getstartedformtext {
    padding-top: 10px;
    padding-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
  }
  
  .getstartedformtext.disclaimer {
    color: #3333338a;
    padding-top: 40px;
    padding-bottom: 0;
  }
  
  .getstartedformheader {
    text-align: center;
    padding-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
    line-height: 36px;
  }
  
  .text-field {
    border-radius: 8px;
  }
  
  .submit-button {
    background: linear-gradient(135deg, #7877c6 0%, #6366f1 100%);
    color: white;
    border-radius: 12px;
    width: 200px;
    font-size: 1.1rem;
    font-weight: 500;
    overflow: visible;
    padding: 0.85rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.35);
  }

  .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.45);
    background: linear-gradient(135deg, #8584d1 0%, #7578f5 100%);
  }
  
  .div-block-8 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .form {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }
  
  .signupbackground {
    background-color: #0006;
    width: 100%;
    height: 100%;
  }
  
  .swiper-nav {
    z-index: 10;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    margin-top: 20px;
    display: flex;
    position: relative;
  }
  
  .swiper-nav-next, .swiper-nav-prev {
    background-color: var(--accent_1);
    width: 30px;
    height: 30px;
    padding-bottom: 0;
    padding-right: 0;
  }
  
  .text-block-6, .text-block-7 {
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .swiper-nav-button {
    color: var(--ambient-primary);
    text-align: center;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    display: none;
    border: 1px solid rgba(120, 119, 198, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(120, 119, 198, 0.12);
  }
  
  .swiper-nav-button:hover {
    background: linear-gradient(145deg, #f0f4ff 0%, #e8f0fb 100%);
    border-color: var(--ambient-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.2);
  }
  
  .swiper-nav-button.prev-button, .swiper-nav-button.next-button {
    display: flex;
    position: relative;
  }
  
  .swiper-nav-button .nav_icon {
    width: 12px;
    height: 12px;
  }
  
  .text-block-8 {
    line-height: 30px;
  }
  
  .arrow_text {
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .div-block-9 {
    height: 30px;
  }
  
  .swiper-pagination {
    display: none;
  }
  
  .swiper-bullet {
    display: none;
  }
  
  .swiper-bullet.is-active {
    display: none;
  }
  
  .bullet-test {
    background-color: var(--accent_1);
    border-radius: 20px;
    width: 8px;
    height: 8px;
  }
  
  .swiper-alignment-placeholder {
    display: none;
  }
  
  .div-block-10 {
    display: flex;
  }
  
  .swiper-nav-button-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    display: flex;
    align-items: center;
    z-index: 10;
  }
  
  .image-8 {
    width: 15px;
    height: 15px;
  }
  
  .nav_icon {
    width: 10px;
    height: 10px;
  }
  
  .div-block-11 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    display: flex;
  }
  
  .dropdown {
    background-color: #3898ec;
  }
  
  .button-3 {
    border-radius: 5px;
  }

  /* Footer styles */
  .landing-footer {
    background: linear-gradient(180deg, var(--ambient-surface-muted) 0%, #ffffff 100%);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(120, 119, 198, 0.1);
    width: 100%;
  }

  .landing-footer-content {
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }

  .landing-footer-content span {
    color: #718096;
    font-size: 14px;
  }
  
  .landing-footer-content a {
    color: #718096;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .landing-footer-content a:hover {
    color: #7877c6;
    text-decoration: underline;
  }

  /* Mobile footer styles */
  @media screen and (max-width: 479px) {
    .landing-footer {
      padding: 20px 0;
    }
    
    .landing-footer-content {
      padding: 0 4%;
      gap: 0.15rem;
    }
    
    .landing-footer-content span,
    .landing-footer-content a {
      font-size: 12px;
    }
  }
  
  @media screen and (max-width: 991px) {
    .standard_width_container.desktop_hero {
      display: none;
    }
  
    .standard_width_container.mobile_hero {
      display: block;
    }
  
    .header_container {
      padding: 0 32px;
      height: 72px;
    }
  
    .header_logo_image {
      height: 28px;
    }
    
    .header_logo {
      height: 28px;
    }
    
    .sign_in_top {
      height: 28px;
    }
    
    .button-2,
    .button-get-started {
      height: 28px;
      padding: 0 12px;
      font-size: 0.8rem;
    }
  
    .column_container {
      gap: 0px;
      flex-flow: column;
    }
  
    .column_60 {
      width: 100%;
    }
  
    .column_60.absolute {
      width: 100%;
      justify-content: center;
      margin-right: 0;
    }
  
    .column_60.privacy {
      height: 480px;
    }
    
    .column_40 {
      width: 100%;
      min-width: unset;
    }
  
    .hero_text_header {
      padding-top: 10px;
      font-size: 4rem;
      line-height: 1.2;
      margin-bottom: 10px;
      text-align: center;
    }
  
    .text-block-2 {
      font-size: var(--normal_text_vw);
      line-height: var(--normal_text_vw);
    }

    .hero_feature_list {
      margin: 16px auto 0 auto;
      gap: 12px;
      align-items: center;
    }

    .hero_feature_item {
      font-size: 2vw;
      gap: 12px;
    }

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

    .button {
      padding: 1vw 5vw;
      font-size: 2.5vw;
      line-height: 2.5vw;
    }
  
    .text-block-4 {
      font-size: var(--normal_text_vw);
      line-height: var(--normal_text_vw);
      margin-bottom: 6vw;
    }
  
    .card_carousel {
      margin-bottom: 6vw;
    }
  
    .slide {
      width: 35vw;
      margin-left: 1.5vw;
      margin-right: 1.5vw;
    }
  
    .slide_image {
      height: 25%;
    }
  
    .slide_heading {
      font-size: 2.5vw;
      line-height: 2.5vw;
    }
  
    .slide_text {
      font-size: 2vw;
      line-height: 2vw;
    }
  
    .slider {
      height: 50vh;
    }
  
    .section_header_text {
      font-size: var(--header_vw);
      line-height: var(--header_vw);
      margin-top: 6vw;
      margin-bottom: 2vw;
    }
  
    .checkmark_text {
      font-size: var(--normal_text_vw);
      line-height: var(--normal_text_vw);
    }
  
    .image-3 {
      width: 60%;
    }

    .mobile-hero-carousel {
      max-width: 320px;
    }
  
    .icon, .icon-2 {
      color: #000;
    }
  
    .bold-text-2 {
      line-height: 2.5vw;
    }
  
    .swiper {
      margin-bottom: 6vw;
    }
  
    .swiper-slide {
      width: 28vw;
      margin-left: 1.5vw;
      margin-right: 1.5vw;
    }
  
    .signupmainblock {
      width: 85%;
      height: 60%;
      padding-left: 60px;
      padding-right: 60px;
    }
  
    .swiper-nav-button.prev-button, .swiper-nav-button.next-button {
      display: none;
    }
  }
  
  @media screen and (max-width: 767px) {
    .body {
      overflow-x: hidden;
    }

    .header_container {
      padding: 0 24px;
      height: 64px;
    }
    
    .header_logo_image {
      height: 24px;
    }
    
    .header_logo {
      height: 24px;
    }
    
    .sign_in_top {
      gap: 8px;
      height: 26px;
    }
    
    .button-2,
    .button-get-started {
      height: 26px;
      padding: 0 10px;
      font-size: 0.75rem;
    }
  
    .column_60.privacy {
      height: auto;
      min-height: 200px;
    }
  
    .hero_text_header {
      font-size: 5rem;
      line-height: 1.25;
      margin-bottom: 5rem;
      text-align: center;
    }
  
    .text-block-2 {
      font-size: 0.95rem;
      line-height: 1.5;
      text-align: center;
    }

    .hero_feature_list {
      margin: 16px auto 0 auto;
      gap: 10px;
      align-items: flex-start;
    }

    .hero_feature_item {
      font-size: 0.9rem;
      gap: 10px;
      text-align: left;
    }

    .hero_feature_icon {
      width: 22px;
      height: 22px;
    }

    .button {
      padding: 12px 32px;
      font-size: 1rem;
      line-height: 1.2;
    }

    .card_carousel {
      margin-bottom: 2rem;
    }
  
    .slide {
      width: 200px;
    }
  
    .slide_heading {
      font-size: 16px;
      line-height: 20px;
    }
  
    .slide_text {
      font-size: 13px;
      line-height: 18px;
    }
  
    .slider {
      height: 45vh;
    }
  
    .image-2 {
      width: 60%;
      max-width: 150px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .checkmark_container {
      margin-top: 12px;
      margin-bottom: 12px;
    }
    
    .checkmark_text {
      font-size: 0.9rem;
      line-height: 1.4;
    }
  
    .image-3 {
      width: 100%;
    }

    .mobile-hero-carousel {
      max-width: 280px;
      border-radius: 20px;
    }
  
    .icon, .icon-2 {
      width: 24px;
      height: 24px;
      font-size: 24px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .right-arrow {
      width: 24px;
      height: 24px;
      top: 335px;
      right: 0%;
    }
  
    .left-arrow {
      width: 24px;
      height: 24px;
      top: 335px;
    }
  
    .swiper {
      margin-bottom: 12vw;
    }
  
    .swiper.swiper-features {
      margin-bottom: 0;
    }
  
    .swiper-wrapper.swiper-features {
      flex-flow: row;
      height: 300px;
    }
  
    .swiper-slide {
      margin-left: 0;
      margin-right: 0;
    }
  
    .signupmainblock {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  
  @media screen and (max-width: 539px) {
    html, body, .body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    .standard_width_container {
      width: 92%;
      padding-left: 4%;
      padding-right: 4%;
    }
  
    .standard_width_container.mobile_hero {
      padding-left: 4%;
      padding-right: 4%;
    }
  
    .header_container {
      justify-content: space-between;
      align-items: center;
      padding: 0 4%;
      height: 56px;
    }
  
    .header_logo_image {
      height: 22px;
    }
    
    .header_logo {
      height: 22px;
    }
    
    .sign_in_top {
      gap: 6px;
      height: 24px;
    }
    
    .button-2,
    .button-get-started {
      height: 24px;
      padding: 0 8px;
      font-size: 0.7rem;
      border-radius: 6px;
    }
  
    .column_60 {
      height: auto;
      max-height: none;
    }
  
    .column_60.privacy {
      height: auto;
      min-height: 150px;
    }
    
    .column_40 {
      width: 100%;
      min-width: unset;
    }
  
    .hero_text_header {
      font-size: 40px;
      line-height: 1;
      margin-bottom: 20px;
      text-align: center;
    }
  
    .text-block-2 {
      font-size: 0.9rem;
      line-height: 1.5;
      text-align: center;
    }

    .hero_feature_list {
      margin: 14px auto 0 auto;
      gap: 8px;
      align-items: flex-start;
    }

    .hero_feature_item {
      font-size: 0.85rem;
      gap: 10px;
      text-align: left;
    }

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

    .button {
      padding: 12px 28px;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .text-block-4 {
      font-size: 0.9rem;
      line-height: 1.5;
      padding-left: 2%;
      padding-right: 2%;
    }
  
    .section_header_text {
      font-size: 1.5rem;
      line-height: 1.3;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }
  
    .card_carousel {
      margin-bottom: 0;
      padding-bottom: 50px;
      overflow: hidden;
    }
  
    .slide {
      width: 160px;
      margin-left: 8px;
      margin-right: 8px;
    }
  
    .slide_contents {
      height: 280px;
      padding-left: 12px;
      padding-right: 12px;
    }
  
    .slide_image {
      height: 50px;
      width: auto;
      margin-top: 16px;
      margin-bottom: 12px;
    }
  
    .slide_heading {
      height: auto;
      min-height: 40px;
      font-size: 0.95rem;
      line-height: 1.3;
      margin-bottom: 8px;
    }
  
    .slide_text {
      font-size: 0.8rem;
      line-height: 1.4;
    }
  
    .slider {
      height: 220px;
    }
  
    .image-2 {
      width: 120px;
      height: auto;
      margin-bottom: 16px;
      padding-top: 16px;
    }
  
    .checkmark_text {
      font-size: 0.85rem;
      font-weight: 500;
      line-height: 1.4;
    }
  
    .checkmark_container {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .checkmark_icon {
      padding-left: 8px;
      padding-right: 12px;
      font-size: 18px;
      line-height: 18px;
    }
  
    .section_end {
      padding-bottom: 2rem;
    }
  
    .image-3 {
      width: 100%;
      border-radius: 12px;
    }

    .mobile-hero-carousel {
      max-width: 240px;
      margin-bottom: 16px;
      border-radius: 12px;
    }
  
    .icon, .icon-2 {
      width: 20px;
      height: 20px;
      font-size: 20px;
      line-height: 20px;
    }
  
    .right-arrow {
      width: 20px;
      height: 20px;
      top: 245px;
      right: 5px;
    }
  
    .left-arrow {
      width: 20px;
      height: 20px;
      top: 245px;
      right: 30px;
    }
  
    .mask {
      width: 310px;
      overflow: visible;
    }
  
    .swiper {
      margin-bottom: 0;
      padding-bottom: 50px;
      overflow: hidden;
    }
  
    .swiper.swiper-features {
      height: auto;
      margin-bottom: 8vw;
    }
  
    .swiper-wrapper.swiper-features {
      flex-flow: row;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      height: auto;
      display: flex;
      overflow: visible;
    }
  
    .swiper-slide {
      width: 145px;
      height: 300px;
      margin-left: 0;
      margin-right: 0;
      display: flex;
    }
  
    .signupmainblock {
      width: 85%;
      height: 50%;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .exitbutton {
      padding: 10px;
    }
  
    .image-7 {
      width: 15px;
    }
  
    .field-label {
      margin-bottom: 0;
    }
  
    .getstartedformtextandbuttoncontainer {
      justify-content: center;
      align-items: center;
      padding-top: 0;
    }
  
    .getstartedformtext {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 12px;
    }
  
    .getstartedformtext.disclaimer {
      padding-top: 20px;
    }
  
    .getstartedformheader {
      padding-bottom: 0;
      font-size: 28px;
      line-height: 28px;
    }
  
    .text-field {
      margin-bottom: 20px;
    }
  
    .div-block-8 {
      padding-top: 0;
    }
  
    .text-block-5 {
      font-size: 12px;
    }
  }

