@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-BoldItalic.eot');
    src: local('Aventa Bold Italic'), local('Aventa-BoldItalic'),
        url('fonts/Aventa-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-BoldItalic.woff2') format('woff2'),
        url('fonts/Aventa-BoldItalic.woff') format('woff'),
        url('fonts/Aventa-BoldItalic.ttf') format('truetype'),
        url('fonts/Aventa-BoldItalic.svg#Aventa-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Bold.eot');
    src: local('Aventa Bold'), local('Aventa-Bold'),
        url('fonts/Aventa-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-Bold.woff2') format('woff2'),
        url('fonts/Aventa-Bold.woff') format('woff'),
        url('fonts/Aventa-Bold.ttf') format('truetype'),
        url('fonts/Aventa-Bold.svg#Aventa-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Italic.eot');
    src: local('Aventa Italic'), local('Aventa-Italic'),
        url('fonts/Aventa-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-Italic.woff2') format('woff2'),
        url('fonts/Aventa-Italic.woff') format('woff'),
        url('fonts/Aventa-Italic.ttf') format('truetype'),
        url('fonts/Aventa-Italic.svg#Aventa-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-LightItalic.eot');
    src: local('Aventa Light Italic'), local('Aventa-LightItalic'),
        url('fonts/Aventa-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-LightItalic.woff2') format('woff2'),
        url('fonts/Aventa-LightItalic.woff') format('woff'),
        url('fonts/Aventa-LightItalic.ttf') format('truetype'),
        url('fonts/Aventa-LightItalic.svg#Aventa-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Light.eot');
    src: local('Aventa Light'), local('Aventa-Light'),
        url('fonts/Aventa-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-Light.woff2') format('woff2'),
        url('fonts/Aventa-Light.woff') format('woff'),
        url('fonts/Aventa-Light.ttf') format('truetype'),
        url('fonts/Aventa-Light.svg#Aventa-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-MediumItalic.eot');
    src: local('Aventa Medium Italic'), local('Aventa-MediumItalic'),
        url('fonts/Aventa-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-MediumItalic.woff2') format('woff2'),
        url('fonts/Aventa-MediumItalic.woff') format('woff'),
        url('fonts/Aventa-MediumItalic.ttf') format('truetype'),
        url('fonts/Aventa-MediumItalic.svg#Aventa-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Medium.eot');
    src: local('Aventa Medium'), local('Aventa-Medium'),
        url('fonts/Aventa-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-Medium.woff2') format('woff2'),
        url('fonts/Aventa-Medium.woff') format('woff'),
        url('fonts/Aventa-Medium.ttf') format('truetype'),
        url('fonts/Aventa-Medium.svg#Aventa-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Regular.eot');
    src: local('Aventa'), local('Aventa-Regular'),
        url('fonts/Aventa-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Aventa-Regular.woff2') format('woff2'),
        url('fonts/Aventa-Regular.woff') format('woff'),
        url('fonts/Aventa-Regular.ttf') format('truetype'),
        url('fonts/Aventa-Regular.svg#Aventa-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #233DE8;
    --primary-color-500: #0e24b2;
    --text-color: #2C2C2C;
    --text-second: #3B3C45;
    --secondary-text: #040404;
    --background-light: #F8F9FF;
    --white: #FFFFFF;
    --text-dark: #000;
    --text-gray: #787878;
    --border-color: #E5E5E5;
    --header-height: 80px;
    --purple-gradient: linear-gradient(135deg, #6C5CE7 0%, #8E7BF7 100%);
    --base-font-size: clamp(14px, 1vw, 16px);
    --black: #000000;
    --white: #FFFFFF;
}

.position-absolute {
    position: absolute;
}   
.position-relative {
    position: relative;
}
div#scheduleDemo {
    top: -120px;
}

html {
    font-size: var(--base-font-size);
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background: var(--white);
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    padding: 24px 0;
    /* background: var(--white); */
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); */
}


@-webkit-keyframes headermove {
    0% {
      transform: translatey(-100px);
    }
    100% {
      transform: translatey(0);
    }
  }
  @keyframes headermove {
    0% {
      transform: translatey(-100px);
    }
    100% {
      transform: translatey(0);
    }
  }

.header.sticky_header {
    background: white;
    padding: 12px 0;
    position: fixed;
    /* box-shadow: 0 10px 10px #00000017; */
    animation: .5s ease-in-out headermove;
    -webkit-animation: .5s ease-in-out headermove;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
}

.logo img {
    display: block;
    height: 58px;
    width: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}


/* badge */
.badge-outlie{
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--primary-color);
    border-radius: 80px;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 24px;
    font-family: 'Aventa', sans-serif;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    padding-top: 154px;
    padding-bottom: 100px;
    background: radial-gradient(178.2% 178.2% at 49.25% -7.1%, #FDFEFF 46.89%, #CDD4FF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    /* background-image: url("../images/bg-gradient.png"); */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.hero-section:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/bg-patern.png);
    height: 560px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
.hero-section .container {
    position: relative;
}
.hero-text {
    position: relative;
}
.hero-text:before {
    content: "";
    display: block;
    position: absolute;
    width: 110%;
    aspect-ratio: 1.8;
    background: #fff;
    filter: blur(40px);
    transform: translate(-20%, -10%);
}
.hero-text * {
    position: relative;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    font-family: "Aventa", sans-serif;
    line-height: 1.2;
    margin: 1.2rem 0;
    color: #2C2C2C;
}

.hero-text h1 span {
    background: linear-gradient(80.34deg, #00C8FF -11.5%, #233DE8 65.39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text > p {
    font-size: 18px;
    font-family: "Aventa", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.hero-text-list ul{
    list-style: none;
    margin-bottom: 3.5rem;
    padding: 0px;
}

.hero-text-list li {
    padding-left: 36px;
    margin-bottom: 26px;
    font-size: 20px;
    font-family: "Aventa", sans-serif;
    line-height: 1.6;
    color: var(--black);
    position: relative;
}

.hero-text-list li:before{
    display: block;
    content: "";
    position: absolute;
    left: 0px;
    top: 3px;
    width: 26px;
    height: 26px;
    background: url(../images/check.svg) no-repeat center center;
    background-size: cover;
}



.cta-button {
    padding: 1rem 2rem;
    font-size: 18px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5849c4;
}

.trusted-industries{
    text-align: center;
    padding: 80px 0px;
}

.trusted-industries h2{
    font-size: 24px;
    font-family: "Aventa", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-second);
    margin-bottom: 34px;
}


.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.client-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 3rem;
    font-family: "Aventa", sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    /* background: var(--white);
    padding: 32px; 
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; */
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
}

/* .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
} */

.feature-icon {
    width: 36px;
    height: 36px;
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-info{
    margin-inline-start: 18px;
    width: calc(100% - 54px);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: "Aventa", sans-serif;
}

.feature-item p {
    font-size: 18px;
    line-height: 1.5;
    color: #787878;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

/* Sign-up Form */
.signup-form-set {
    background-image: linear-gradient(80.34deg, #00C8FF -11.5%, #233DE8 65.39%);
    padding: 48px;
    border-radius: 32px;
}

.signup-form {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 32px 0px 0px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.form-container h2 {
    font-size: clamp(1.3rem, 1.8vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    font-family: "Aventa", sans-serif;
}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

/* Form Labels */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 1vw, 0.875rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
}

/* Form Inputs */
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #999999;
}

.required {
    color: #FF4B4B;
    font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    line-height: 1.4;
    margin-top: 0.375rem;
    display: block;
}

.submit-button {
    width: 100%;
    background: var(--purple-gradient);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Insights Section */
.insights-section {
    padding: 80px 0;
    background: var(--white);
}

.insights-section h2 {
    font-size: 46px;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Aventa", sans-serif;
    text-align: center;
}

.insights-section h2 span {
    background: linear-gradient(80.34deg, #00C8FF -11.5%, #233DE8 65.39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insights-section .page-image img{
    max-width: 100%;
    height: auto;
}

.insights-section .description-text {
    font-size: 20px;
    text-align: center;
    margin: auto;
    max-width: 860px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.insights-widgets {
    padding: 64px 0px 0px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.insights-widgets .insight {
    width: calc(33.33% - 40px);
}

.insights-widgets .insight h3 {
    font-size: 32px;
    line-height: 1.4;
    color: #233DE8;
    padding-left: 16px;
    border-left: 1px solid #233DE8;
    margin-bottom: 16px;
}
.insights-widgets .insight .text {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: #0E0E11;
    padding-left: 16px;
        font-family: "Aventa", sans-serif;
    margin-bottom: 20px;
    font-weight: 600;
}
.insights-widgets .insight .description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #0E0E11;
    padding-left: 16px;
}

/* Mastery Section */
.mastery-section {
    padding: 80px 0;
    background: var(--white);
}

.mastery-section h2 {
    font-size: 48px;
    text-align: center;
    line-height: 1.2;
    font-family: "Aventa", sans-serif;
    margin-bottom: 60px;
}

.mastery-section h2 span {
    background: linear-gradient(80.34deg, #00C8FF -11.5%, #233DE8 65.39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.mastery-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.mastery-widgets .mastery-widget {
    width: calc(33.33% - 40px);
    position: relative;
}

.mastery-widgets .mastery-widget:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 100%, rgba(35, 61, 232, 0) 0%);
}

.mastery-widgets .mastery-widget .content {
    padding-left: 28px;
    border-left: 1px solid #233DE8;
}

.mastery-widgets .mastery-widget .content .mastery-image {
    width: 60px;
    border-radius: 50%;
    background: #233DE9;
    margin-bottom: 20px;
}

.mastery-widgets .mastery-widget .content .mastery-image img{
    max-width: 100%;
    height: auto;
    display: block;
}

.mastery-widgets .mastery-widget .content .text {
    font-family: "Aventa", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.2;
    color: #0E0E11;
    margin-bottom: 20px;
}
.mastery-widgets .mastery-widget .content .description {
    font-family: "Aventa", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: #0E0E11;
}

.mastery-widgets .mastery-widget.mastery-widget-title{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, #EEF0FD);
    border-radius: 16px;
}

.mastery-widgets .mastery-widget.mastery-widget-title:before{
    display: none;
}


.mastery-widgets .mastery-widget.mastery-widget-title .content{
    border-left: none;
}

.mastery-widgets .mastery-widget.mastery-widget-title .mastery-image{
    height: 4px;
    border-radius: 0px;
    margin-top: 70px;
    line-height: normal;
}
/* Industries Section */
.idustries-section {
    padding: 80px 0px;
    padding-bottom: 100px;
    background: radial-gradient(178.2% 178.2% at 49.25% -7.1%, #FDFEFF 46.89%, #CDD4FF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    /* background-image: url("../images/bg-gradient.png"); */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.idustries-content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.idustries-text {
    max-width: 405px;
}

.idustries-text h2 {
    font-size: 48px;
    font-family: "Aventa", sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000000;
}

.idustries-text p {
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #212121;
}
.idustries-text .demo-button {
    display: inline-block;
    background: #233DE8;
    color: var(--white);
    line-height: 1.75;
    cursor: pointer;
    text-decoration: none;
    border: 0px;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.50;
}

.industry-images {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.industry-images .industry-image {
    overflow: hidden;
    position: relative;
    width: 15%;
    height: 580px;
    transition: width 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

.industry-images .industry-image img {
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
  }
  
  
.industry-images .industry-image .badge-text {
    position: absolute;
    left: 32px;
    bottom: 44px;
    padding: 4px 20px;
    background-color: #233DE8;
    border-radius: 0px 0px 16px 16px;
    color: var(--white);
    transform: rotate(-90deg);
    transform-origin: left bottom;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }

  .industry-content{
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 44px;
    opacity: 0;
    width: 280px;
    transition: opacity 0.3s ease-in-out;
  }

  .industry-content-title{
    font-size: 36px;
    font-family: "Aventa", sans-serif;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
  }

  .industry-content-text{
    font-size: 16px;
    font-family: "Aventa", sans-serif;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
  }

  
  .industry-images .industry-image:first-child {
    width: 55%;
  }

  .industry-images .industry-image:first-child .industry-content {
    opacity: 1;
  }

  .industry-images .industry-image:first-child .badge-text {
    opacity: 0;
  }

  .industry-images:hover .industry-image{
    width: 15%;
  }
  
  .industry-images:hover .industry-image:hover {
    width: 55%
  }

  .industry-images:hover .industry-image .industry-content{
    opacity: 0;
  }

  .industry-images:hover > .industry-image:hover > .industry-content{
    opacity: 1;
  }

  
  .industry-images:hover .industry-image .badge-text{
    opacity: 1;
  }

  .industry-images:hover > .industry-image:hover > .badge-text{
    opacity: 0;
  }
  
  
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    font-size: 48px;
    text-align: center;
    line-height: 1.2;
    font-family: "Aventa", sans-serif;
    margin-bottom: 20px;
}

.faq-section p {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
}

.faq-section ul {
    list-style: none;
    padding: 72px 0px 0px;
    margin: auto;
    max-width: 800px;
}

.faq-section ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F1F1F1;
}

.faq-section ul li .faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-section ul li .faq-item .text {
    font-size: 22px;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
    color: #2E2E27;
    font-weight: 500;
}

.faq-section ul li .faq-item .arrow img {
    width: 12px;
    height: 8px;
    object-fit: contain;
}

.faq-section ul li .content {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: #2E2E27;
    
    margin-top: 16px;
}

.faq-section ul li.hide .content {
    display: none;
}

.faq-section ul li.show .content {
    display: block;
}

.faq-section .more-details-set {
    max-width: 850px;
    margin: auto;
    margin-top: 36px;
    padding: 20px 42px;
    border-radius: 14px;
    background: #233DE8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-section .title {
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
}
.faq-section .text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
}
.faq-section .action-button {
    background: transparent;
    color: var(--white);
    line-height: 1.75;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq-section svg path {
    stroke: var(--white);
}

.faq-section .action-button:hover{
    background: var(--white);
    color: var(--primary-color);
}

.faq-section .action-button:hover svg path{
    stroke: var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: "Aventa", sans-serif;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.benefits-image {
    position: relative;
    height: 578px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    will-change: transform, opacity;
}

.benefits-image-item[style*="display: block"] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefits-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
    /* background: var(--white); */
}

.benefits-list h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    font-family: "Aventa", sans-serif;
}

.benefits-list ul {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 1rem;
    line-height: 1;
}

.benefit-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.benefit-feature {
    background: var(--background-light);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-feature img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--background-light);
}

.clients-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Aventa", sans-serif;
}

.clients-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 4rem;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}


.ratings {
    display: flex;
    justify-content: center;
    gap: 48px;
    align-items: center;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.stars {
    color: #FFB800;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #16171D;
    background-image: url("../images/bg-img.svg");
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Aventa", sans-serif;
}

.cta-section .demo-button {
    background: #233DE8;
    border: 1px solid #CDCAFF;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.75;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-section .demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(108, 92, 231, 0.15);
}

/* Footer */
.footer {
    padding: 90px 0;
    background: #12141D;
    margin: auto;
}

.footer-content{
    text-align: center;
}

.footer-logo {
    width: 204px;
    margin: 0px auto 28px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-text{
    max-width: 312px;
    margin: 0px auto 28px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #B9B3B3;
    line-height: 1.5;
}

.footer-social-links{
    margin: 0px auto 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4B4B4B;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    line-height: 36px;
}

.footer-social-links-item.twitter:hover{
    background: #1DA1F2;
}
.footer-social-links-item.facebook:hover{
    background: #2B59FF;
}
.footer-social-links-item.instagram:hover{
    background: #833AB4;
}
.footer-social-links-item.github:hover{
    background: #2B59FF;
}
.footer-countries {
    margin: 36px auto 42px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.copyright {
    max-width: 1188px;
    margin: auto;
    padding-top: 42px;
    border-top: 1px solid #8A8A8A;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    color: #FAFAFA;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 48px;
    }
    
    .benefits-section h2,
    .clients-section h2,
    .cta-section h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text > p {
        font-size: 16px;
    }
    
    .features-section h2 {
        font-size: 32px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    .benefits-section h2,
    .clients-section h2,
    .cta-section h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .benefits-list h3 {
        font-size: 36px;
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        font-size: 18px;
        margin-bottom: 1.25rem;
    }
    
    .benefits-list li::before {
        font-size: 28px;
    }
    
    .benefit-feature {
        font-size: 18px;
        padding: 0.75rem 1.25rem;
    }
    
    .benefit-feature img {
        width: 28px;
        height: 28px;
    }
    
    .clients-section p {
        font-size: 16px;
    }
    
    .cta-section .demo-button {
        font-size: 16px;
    }

    .client-logos {
        gap: 32px;
    }


    .ratings {
        flex-direction: column;
        gap: 24px;
    }

    .benefits-image {
        height: 500px;
    }

    .benefits-image-item {
        height: 100%;
        width: 100%;
    }

    .header {
        padding: 20px 0;
    }

    .header .container {
        padding: 0 24px;
    }

    .logo img {
        height: 40px;
    }

    .demo-button {
        padding: 12px 20px;
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .signup-form-set {
        padding: 24px;
    }
    
    .signup-form {
        padding: 24px 0px 0px;
    }
    
    .form-group {
        margin-bottom: 24px;
    }

    .scroll_item_content_info {
        font-size: 18px;
        margin-bottom: 1.25rem;
    }
    
    .scroll_item_content_info.check_icon:before {
        width: 24px;
        height: 24px;
        margin-inline-end: 12px;
    }
    
    .scroll_item_content_info_container {
        padding-left: 36px;
    }

    .scroll_item_content h3 {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text > p {
        font-size: 14px;
    }
    
    .hero-section {
        padding-top: 100px;
    }

    .benefits-section h2,
    .clients-section h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .client-logos {
        gap: 20px;
    }

    .client-logos img {
        height: 30px;
    }

    .rating-item img {
        height: 30px;
    }

    .header {
        padding: 16px 0;
    }

    .header .container {
        padding: 0 16px;
    }


    .demo-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .footer-links a,
    .copyright {
        font-size: 11px;
    }

    .signup-form-set {
        padding: 16px;
    }
    
    .signup-form {
        padding: 20px 0px 0px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }

    .benefits-image {
        height: 450px;
    }
    
    .benefits-image-item {
        height: 100%;
        width: 100%;
    }
    
    .benefits-list h3 {
        font-size: 32px;
        margin-bottom: 1.75rem;
    }
    
    .benefits-list li {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .benefits-list li::before {
        font-size: 26px;
    }
    
    .benefit-feature {
        font-size: 16px;
        padding: 0.625rem 1rem;
    }
    
    .benefit-feature img {
        width: 26px;
        height: 26px;
    }

    .scroll_item_content_info {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .scroll_item_content_info.check_icon:before {
        width: 22px;
        height: 22px;
        margin-inline-end: 10px;
    }
    
    .scroll_item_content_info_container {
        padding-left: 32px;
    }

    .scroll_item_content h3 {
        font-size: 22px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 576px) {
    .benefits-section {
        padding: 2.5rem 0;
    }
    
    .benefits-section h2 {
        font-size: clamp(1.5rem, 2vw, 1.75rem);
    }
    
    .benefits-image {
        height: 400px;
    }
    
    .scroll_item_content h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .scroll_item_content_info {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .scroll_item_content_info.check_icon:before {
        width: 22px;
        height: 22px;
        margin-inline-end: 10px;
    }
    
    .scroll_item_content_info_container {
        padding-left: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate {
    opacity: 0;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text.animate-in {
    animation-delay: 0.2s;
}

.feature-item.animate-in {
    animation-delay: var(--delay, 0s);
}

.feature-item:nth-child(1) { --delay: 0.3s; }
.feature-item:nth-child(2) { --delay: 0.4s; }
.feature-item:nth-child(3) { --delay: 0.5s; }
.feature-item:nth-child(4) { --delay: 0.6s; }

.benefits-image.animate-in {
    animation-delay: 0.2s;
}

.benefits-list.animate-in {
    animation-delay: 0.4s;
}

.client-logos.animate-in {
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.rating-item.animate-in {
    animation-delay: 0.4s;
}

/* Form Validation Styles */
.form-group.focused input,
.form-group.focused select {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #FF4B4B;
    box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.1);
}

.form-group.has-error .required {
    display: block;
}

/* Submit Button States */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button.success {
    background: #22C55E;
}

/* Select Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px !important;
}

.header .demo-button {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .demo-button:hover {
    background: var(--primary-color-500);
    color: var(--white);
}

/* Form Styles */
.floating-label {
    position: relative;
}

.floating-label input,
.floating-label select {
    width: 100%;
    height: 3rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
    color: var(--text-color);
    background: var(--white);
    transition: all 0.2s ease;
}

.floating-label label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #666;
    pointer-events: none;
    transition: all 0.2s ease;
    padding: 0 0.25rem;
    background: transparent;
}

/* Floating label animation */
.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label select:focus ~ label,
.floating-label select:not([value=""]):valid ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    color: var(--text-color);
    background: white;
    z-index: 1;
    font-weight: 500;
}

/* Focus states */
.floating-label input:focus,
.floating-label select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    outline: none;
}

/* Select specific styles */
.floating-label select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.floating-label select:required:invalid {
    color: transparent;
}

.floating-label select:required:invalid + label {
    top: 50%;
    font-size: 16px;
    color: #666;
}

.floating-label select:focus + label,
.floating-label select:valid + label {
    top: 12px;
    font-size: 12px;
    color: var(--primary-color);
}

/* Error state */
.floating-label input:invalid:not(:placeholder-shown) {
    border-color: #FF4B4B;
}

.floating-label input:invalid:not(:placeholder-shown) ~ label {
    color: #FF4B4B;
}

.required {
    display: none;
    color: #FF4B4B;
    font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    margin-top: 0.375rem;
    padding: 6px 10px;
    /* position: absolute;
    left: 12px;
    top: calc(100% + 4px); */
}

.floating-label input:invalid:not(:placeholder-shown) ~ .required {
    display: block;
}

/* Submit button */
.submit-button {
    width: 100%;
    height: 56px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* ======================== Interview section styles ==================== */
.scroll_tab_triggers {
    /* height: 578px; */
    width: 582px;
}

.style3 .scroll_tab_triggers,
.style3 .scroll_tab_list {
/*    background: #E9E8FF;*/
}
.style3 .scroll_item_content.scroll_tab_tigger {
border-color: #d1d1de;
}
.scroll_tab_list {
width: 60%;
/*    background: #E9D5F7;*/
border-radius: 24px;
}


/*.scroll_item_content.active h3 {
    font-size: 26px;
}*/
.scroll_item_content p {
    max-height: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(-10px);
}
.scroll_item_content.active p {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}
.scroll_item_content.scroll_tab_tigger {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 19px;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
    transform: translateX(0);
}
.scroll_item_content h3 {
    color: #0A0A0A;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Aventa", sans-serif;
    cursor: pointer;
    text-decoration: none;
}
/* .scroll_item_content.scroll_tab_tigger.active h3,
.scroll_item_content.scroll_tab_tigger:hover h3 {
    color: #5A51E1;
} */
.scroll_item_content.scroll_tab_tigger:hover {
    opacity: 1;
    transform: translateX(8px);
}
.scroll_item_content.scroll_tab_tigger.active {
    opacity: 1;
    transform: translateX(8px);
}
.scroll_item_content.scroll_tab_tigger:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}
.scroll_tab_section {
    min-height: 100vh;
}
.scroll_tab_section.style2 .scroll_tab_triggers,
.scroll_tab_section.style2 .scroll_tab_list {
    background: transparent;
}
.scroll_tab_section.style2 .scroll_tab_list {
    height: 560px;
}
.scroll_tab_section.style2 .scroll_item_content p {
    margin-top: 30px;
}
.scroll_tab_section.style2 .scroll_item_content.active p {
    margin-top: 10px;
}
.scroll_tab_section.style2 .scroll_item_content.scroll_tab_tigger {
    margin-bottom: 30px;
    border-color: #a6a7b9;
}
.scroll_tab_section.style2 .scroll_item_content.scroll_tab_tigger:last-child {
    margin-bottom: 0;
}
.ai_card figure img {
    width: 100%;
}
.scroll_tab_section.style2 .scroll_tab_triggers {
    padding: 0;
}
.scroll_tab_section.style2 .scroll_tab_list figure {
    justify-content: flex-end !important;
    text-align: right;
}
.scroll_tab_section.style2 .scroll_tab_list figure img {
    border-radius: 14px;
    margin-left: auto;
}

.scroll_item_content_info{
    font-size: 22px;
    font-family: "DM Sans", sans-serif;
    display: block;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    position: relative;
}
.scroll_item_content_info_label{
    font-weight: 600;
    color: #0A0A0A;
}
.scroll_item_content_info.check_icon:before{
    content: "";
    background-image: url("../images/check-fill-primary.svg");
    display: inline-block;
    background-position: 0;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
    margin-inline-end: 16px;
    position: absolute;
    left: 0;
    top: 5px;
}
.scroll_item_content_info_container{
    padding-left: 40px;
}

.scroll_item_content_info_value{
    font-weight: 400;
    color: #555;
}

/* Benefits Section Responsive */
@media screen and (max-width: 1200px) {
    .benefits-content {
        gap: 2.5rem;
    }
    
    .scroll_tab_triggers {
        width: 100%;
        height: auto;
    }
    
    .benefits-image {
        height: 25rem;
    }
}

@media screen and (max-width: 992px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .benefits-image {
        height: 21.875rem;
        order: -1;
    }
    
    .scroll_tab_triggers {
        max-width: 37.5rem;
        margin: 0 auto;
    }
    
    .benefits-list h3 {
        font-size: clamp(1.5rem, 2vw, 1.75rem);
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {

    .header .demo-button{
        padding: 8px 20px;
        font-size: 12px;
    }

    .badge-outlie{
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .trusted-industries, .insights-section, .mastery-section, .idustries-section, .faq-section, .footer{
        padding: 40px 0px;
    }
    .insights-widgets .insight {
        width: 100%;
    }

    .insights-section h2{
        font-size: 28px;
    }

    .hero-text-list li{
        font-size: 16px;
        margin-bottom: 12px;
    }

    .insights-section .description-text{
        font-size: 16px;
    }
    
    .mastery-widgets .mastery-widget {
        width: 100%;
    }

    .idustries-content{
        display: block;
    }

    .idustries-text{
        margin-bottom: 30px;
    }

    .insights-widgets{
        padding: 24px 0px;
        gap: 24px;
    }

    .insights-widgets .insight h3{
        font-size: 28px;
    }

    .insights-widgets .insight .text{
        font-size: 22px;
        margin-bottom: 12px;
    }

    .insights-widgets .insight .description{
        font-size: 16px;
    }

    .mastery-section h2{
        font-size: 28px;
        margin-bottom: 30px;
    }
    .mastery-widgets{
        gap: 30px;
    }
    .mastery-widgets .mastery-widget .content .mastery-image{
        width: 40px;
    }

    .mastery-widgets .mastery-widget .content .text{
        font-size: 22px;
        margin-bottom: 12px;;
    }

    .mastery-widgets .mastery-widget .content .description{
        font-size: 16px;
    }

    .idustries-text h2{
        font-size: 28px;
    }

    .industry-content-title{
        font-size: 28px;
    }

    .faq-section h2{
        font-size: 28px;
    }

    .faq-section ul{
        padding: 32px 0 0;
    }

    .benefits-section {
        padding: 3.75rem 0;
    }
    
    .benefits-section h2 {
        font-size: clamp(1.8rem, 2.5vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        margin-bottom: 2.5rem;
    }
    
    .benefits-image {
        height: 500px;
    }
    
    .benefits-image-item {
        height: 100%;
        width: 100%;
    }
    
    .scroll_item_content h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .scroll_item_content_info {
        font-size: 18px;
        margin-bottom: 1.25rem;
    }
    
    .scroll_item_content_info.check_icon:before {
        width: 24px;
        height: 24px;
        margin-inline-end: 12px;
    }
    
    .scroll_item_content_info_container {
        padding-left: 36px;
    }
}

@media screen and (max-width: 576px) {

    .industry-images{
        flex-direction: column;
    }

    .industry-images .industry-image{
        width: 100% !important;
        height: 200px;
        overflow: hidden;
        border-radius: 12px;
    }

    .industry-images .industry-image:before{
        content: "";
        display: block;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 26%);
    }

    .industry-images .industry-image .badge-text{
        display: none;
    }

    .industry-content{
        opacity: 1;
    }

    .faq-section .more-details-set{
        flex-direction: column;
        padding: 20px 24px;
    }

    .faq-section .more-details-set .info{
        margin-bottom: 20px;
    }

    .faq-section .text{
        display: inline;
    }

    .footer-countries{
        margin: 24px auto;
    }

    .copyright{
        padding-top: 24px
    }

    .benefits-section {
        padding: 2.5rem 0;
    }
    
    .benefits-section h2 {
        font-size: clamp(1.5rem, 2vw, 1.75rem);
    }
    
    .benefits-image {
        height: 400px;
    }
    
    .scroll_item_content h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .scroll_item_content_info {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .scroll_item_content_info.check_icon:before {
        width: 22px;
        height: 22px;
        margin-inline-end: 10px;
    }
    
    .scroll_item_content_info_container {
        padding-left: 32px;
    }
}