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

body {
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow-x: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 15;
}

.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.logo {
  height: 40px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.info-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #000000;
  white-space: nowrap;
}

.info-text .highlight {
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.info-text .highlight:hover {
  opacity: 0.8;
}

.app-stores {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 137px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid rgba(214, 226, 229, 0.69);
  border-radius: 100px;
  padding: 4px;
  transition: opacity 0.3s ease;
}

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

.store-link img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.slider-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 5;
  padding: 40px;
  min-height: calc(100vh - 80px);
}

.slider-navigation {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #A0C9FF;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 16px;
  height: 16px;
  border-radius: 12px;
  border: 1px solid #308CCE;
  background: #006EFF;
}

.slider-main {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.content-area {
  max-width: 700px;
  flex: 0 0 auto;
}

.slider-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  transform: scale(1.3);
}

.slider-title {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}

.slider-title br {
  display: none;
}

.slider-title .title-highlight {
  color: #016BBB;
  font-weight: 700;
}

.slider-description {
  color: rgba(0, 0, 0, 0.73);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}

.slider-description strong {
  font-weight: 700;
}

.download-button,
a.download-button {
  display: inline-flex;
  padding: 18px 45px;
  justify-content: center;
  align-items: center;
  border-radius: 71px;
  background: #016BBB;
  border: none;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.36px;
  margin-bottom: 32px;
  transition: opacity 0.3s ease;
}

.download-button:hover,
a.download-button:hover {
  opacity: 0.9;
}

.download-link {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: inline;
}

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

.download-link strong {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

.slider-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(8px 20px 18px rgba(0, 0, 0, 0.09));
  transition: transform 0.3s ease;
}

.slider-arrow:hover {
  transform: scale(1.05);
}

.slider-arrow img {
  width: 17px;
  height: 14px;
  display: block;
}

.slider-arrow.next-arrow img {
  width: 16px;
}

.slider-footer-text {
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Inter, sans-serif;
  font-size: 350px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -24.5px;
  opacity: 0.27;
  background: linear-gradient(180deg, #016BBB -18.08%, rgba(235, 235, 235, 0.00) 66.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.content-section {
  position: relative;
  border: 0.725px solid rgba(255, 255, 255, 0.03);
  background: #016BBB;
  height: 264px;
  width: 100%;
  overflow: visible;
  z-index: 20;
  margin-top: 0;
  margin-bottom: 350px;
}

.content-section .section-image {
  position: absolute;
  bottom: -110%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 21;
  pointer-events: none;
  width: 100%;
  max-width: 1000px;
}

.content-section .section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section .section-image .section-image-mobile {
  display: none;
}

.content-section .section-image .play-button {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  cursor: pointer;
  pointer-events: auto;
}

.content-section .section-image .play-button img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  display: block;
}

.content-section .section-image .section-text {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 129%;
  letter-spacing: -0.96px;
}

.content-section .section-image .section-text-mobile {
  display: none;
}

.content-section .section-image .section-text .text-highlight {
  color: #00BBDC;
  font-weight: 900;
}

.content-section .section-overlay-text {
  position: absolute;
  top: 11%;
  left: 22%;
  z-index: 23;
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.08px;
  text-align: left;
  pointer-events: none;
  padding-left: 60px;
  width: 61%;
}

.content-section .section-overlay-text .section-overlay-icon {
  position: absolute;
  left: -10%;
  top: 0%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
}

.content-section .section-overlay-text strong {
  font-weight: 800;
}

.boxes-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;

  max-width: 1000px;
  margin: 0 auto;
}

.boxes-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.box {
  flex: 1;
  max-width: 600px;
  border-radius: 20px;
  padding: 30px 0 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.box.box-1 {
  background: #EBF3FF;
}

.box.box-2 {
  background: #D6F8FF;
}

.box .badge {
  display: inline-block;
  padding: 8px 12px;
  align-items: center;
  border-radius: 50px;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 20px;
  width: fit-content;
}

.box .badge.badge-1 {
  background: #016BBB;
}

.box .badge.badge-2 {
  background: #2DCDED;
}

.box .box-title {
  color: #060609;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.08px;
  text-transform: capitalize;
  margin: 0;
  padding-right: 30px;
}

.box .box-title .title-highlight-1 {
  color: #016BBA;
  font-weight: 800;
}

.box .box-title .title-highlight-2 {
  color: #2DCDED;
  font-weight: 800;
}

.box .box-description {
  color: rgba(6, 6, 9, 0.70);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 16px;
  margin-bottom: 0;
  padding-right: 30px;
}

.box .box-image-wrapper {
  position: relative;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.box .box-bg-svg {
  position: absolute;
  top: -235px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 880px;
  max-width: 676px;
  z-index: 1;
  pointer-events: none;
}

.box .box-image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 515px;
  object-fit: contain;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  z-index: 2;
}

.message-section {
  width: 100%;
  background: #1B1D1F;
  height: 600px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  padding: 0 40px;
}

.message-content {
  position: relative;
  display: flex;
  width: 1032px;
  max-width: 100%;
  height: 308px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.message-box {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: auto;
  height: auto;
  max-width: 350px;
}

.message-box.message-box-1 {
  top: -80px;
  left: 120px;
}

.message-box.message-box-2 {
  top: -60px;
  right: 150px;
}

.message-box.message-box-3 {
  top: 5%;
  right: -330px;
  transform: translateY(-50%);
}

.message-box.message-box-4 {
  bottom: -20%;
  right: -200px;
  transform: translateY(-50%);
}

.message-box.message-box-5 {
  bottom: -60px;
  left: 40%;
}

.message-box.message-box-6 {
  bottom: -50px;
  left: -20%;
}

.message-box.message-box-7 {
  top: 20px;
  left: 0;
  transform: translateX(-50%);
}

.message-text {
  position: relative;
  z-index: 2;
  color: #FFF;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 57px;
  margin: 0;
}

.message-text .spam-highlight {
  color: #23DAFF;
}

.team-section {
  width: 100%;
  background: #FFF;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-title {
  color: #060609;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.65px;
  text-transform: capitalize;
  margin: 0;
}

.team-title .team-title-highlight {
  color: #060609;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.65px;
  text-transform: capitalize;
}

.team-subtitle {
  color: rgba(6, 6, 9, 0.70);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 24px 0 0 0;
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-team-image-wrapper {
  display: none;
}

.envelope {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.envelope.envelope-1 {
  top: -10%;
  left: 14%;
}

.envelope.envelope-2 {
  top: 10%;
  right: 0%;
  width: 10%;
}

.envelope.envelope-3 {
  bottom: -15%;
  left: 0;
}

.team-image {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  z-index: 1;
}

.team-description {
  width: 70%;
  color: #060609;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: -0.48px;
  margin: 0 auto;
}

.team-description .team-name {
  color: #060609;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 164%;
  letter-spacing: -0.48px;
}

.faq-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  padding: 0 100px 0 100px;
  display: flex;
  gap: 60px;
  align-items: stretch;
  overflow: hidden;
}

.faq-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.faq-background img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
}

.faq-left {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 1;
}

.faq-title {
  color: #060609;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.92px;
  text-transform: capitalize;
  margin: 0 0 24px 0;
}

.faq-title-highlight {
  color: #016BBB;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.92px;
  text-transform: capitalize;
}

.faq-subtitle {
  color: rgba(6, 6, 9, 0.70);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 20px 0;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 15px;
  border: 2px solid #DCE8F0;
  background: #FFF;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #016BBB;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
  opacity: 1;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.6px;
  text-transform: capitalize;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: rgba(6, 6, 9, 0.70);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  position: relative;
  z-index: 1;
}

.faq-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-top: auto;
}

.download-section {
  width: 100%;
  background: #016BBB;
  padding: 0 100px;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 10;
}

.download-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.download-left {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 0 80px 165px;
}

.download-title {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.8px;
  text-transform: capitalize;
  margin: 0;
}

.download-title-bold {
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.8px;
  text-transform: capitalize;
}

.download-description {
  color: rgba(255, 255, 255, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.16px;
  margin: 0;
}

.download-subtitle {
  color: #FFF;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin: 0;
}

.download-app-stores {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.download-app-stores .store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 137px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid rgba(214, 226, 229, 0.69);
  border-radius: 100px;
  padding: 4px;
  transition: opacity 0.3s ease;
}

.download-app-stores .store-link:hover {
  opacity: 0.8;
}

.download-app-stores .store-link img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.download-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.download-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  align-self: flex-end;
  position: relative;
  z-index: 100;
  margin-bottom: -100px;
  transform: scale(1.2);
}

.footer {
  width: 100%;
  background: #1B1D1F;
  position: relative;
  overflow: hidden;
  z-index: 0;
  min-height: 300px;
}

.footer-text {
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 400px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: -16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.00) 76.98%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  color: transparent;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 100%;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 100px 40px 100px;
  display: flex;
  align-items: center;
  gap: 200px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #FFF;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: -0.16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

.footer-copyright-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 100px 60px 100px;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.16);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  margin: 0;
  display: inline;
}

.footer-copyright-bold {
  color: rgba(255, 255, 255, 0.16);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.64px;
  text-transform: capitalize;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.footer-top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer-top-button:hover {
  opacity: 0.8;
}

.footer-top-button img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-content {
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: 100px 40px;
  background: #FFF;
}

.page-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-title {
  color: #060609;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.44px;
  margin: 0 0 40px 0;
}

.page-text {
  color: rgba(6, 6, 9, 0.70);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.page-text p {
  margin: 0 0 20px 0;
}

.page-text h2 {
  color: #060609;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.page-text h3 {
  color: #060609;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 12px 0;
}

.page-text ul {
  margin: 15px 0;
  padding-left: 30px;
}

.page-text li {
  margin: 10px 0;
  color: rgba(6, 6, 9, 0.70);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.page-text strong {
  font-weight: 600;
  color: #060609;
}

@media (max-width: 768px) {
  .slider-container {
    padding-top: 180px;
  }

  .header {
    position: absolute;
    padding: 30px 20px 15px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .logo {
    height: 48px;
  }

  .header-right {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .info-section {
    display: none;
  }

  .app-stores {
    gap: 8px;
  }

  .store-link {
    width: 100px;
    height: 36px;
  }

  .slider-content {
    padding: 20px;
    min-height: calc(100vh - 60px);
  }

  .slider-navigation {
    display: none;
  }

  .slider-main {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .content-area {
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }

  .slider-title {
    text-align: left;
  }

  .slider-description {
    text-align: left;
  }

  .slider-controls {
    display: none;
  }

  .content-section {
    height: 270px;
  }

  .content-section .section-image {
    top: 80%;
  }

  .content-section .section-overlay-text {
    top: -13%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    padding: 0;
    font-size: 22px;
  }

  .content-section .section-overlay-text .section-overlay-icon {
    position: relative;
    left: auto;
    top: 0;
    transform: none;
    display: block;
    margin: 0 auto -20px;
    width: 150px;
    height: 150px;
  }

  .content-section .section-image .play-button {
    position: absolute;
    left: auto;
    right: 58px;
    top: auto;
    bottom: -14%;
    transform: translateY(-50%);
    z-index: 22;
    cursor: pointer;
    pointer-events: auto;
  }

  .content-section .section-image .section-text-desktop {
    display: none;
  }

  .content-section .section-image .section-text-mobile {
    display: block;
    position: absolute;
    left: 57px;
    right: auto;
    top: auto;
    bottom: -13%;
    transform: translateY(-50%);
    z-index: 22;
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 129%;
    letter-spacing: -0.96px;
  }

  .content-section .section-image .section-image-desktop {
    display: none;
  }

  .content-section .section-image .section-image-mobile {
    display: block;
    width: 75%;
    height: 90%;
    margin: 0 auto;
    border-radius: 20px;
    background: lightgray 50% / cover no-repeat;
    border: 2px solid white;
  }

  .slider-image {
    width: 100%;
    align-items: flex-start;
  }

  .slider-image {
    max-width: 100%;
    order: -1;
  }

  .slider-title {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .slider-footer-text {
    display: none;
  }

  .slider-description {
    font-size: 14px;
  }

  .download-button {
    padding: 14px 32px;
    font-size: 16px;
  }

  .faq-section {
    padding: 60px 20px 0 20px;
    min-height: auto;
    flex-direction: column;
  }


  .faq-left {
    max-width: 100%;
  }

  .faq-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: -1.08px;
  }

  .faq-subtitle {
    text-align: center;
  }

  .faq-title-highlight {
    font-size: 32px;
    letter-spacing: -1.08px;
    color: #060609;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    max-height: none;
  }

  .faq-background {
    top: 0;
    height: 100%;
  }

  .faq-background img {
    object-fit: cover;
    object-position: center;
    height: 100%;
  }

  .faq-right {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .faq-image {
    max-width: 100%;
  }

  .download-section {
    padding: 60px 20px 0 20px;
    align-items: start;
    min-height: 700px;
  }

  .download-container {
    flex-direction: column;
    gap: 40px;
  }

  .download-left {
    max-width: 100%;
    padding: 0;
    order: -1;
  }

  .download-title {
    font-size: 32px;
    letter-spacing: -1.08px;
  }

  .download-title-bold {
    font-size: 36px;
    letter-spacing: -1.08px;
  }

  .download-right {
    order: 1;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 250px;
    margin-bottom: 0;
  }

  .download-image {
    width: 100%;
    max-width: 100%;
    transform: scale(1.8);
    transform-origin: center top;
  }

  .download-subtitle {
    margin-top: 20px;
  }

  .download-app-stores {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .download-app-stores .store-link {
    width: 110px;
    height: 40px;
  }

  .download-app-stores .store-link img {
    width: 80%;
    height: 80%;
    object-fit: contain;
  }

  .boxes-container {
    flex-direction: column;
    width: 100%;
  }

  .box {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
  }

  .box .box-title {
    color: #060609;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    letter-spacing: -0.72px;
    text-transform: capitalize;
  }

  .box .box-description {
    font-size: 16px;
  }

  .message-section {
    margin-top: 0px;
  }

  .message-text {
    color: #FFF;
    text-align: center;
    font-family: "DM Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px;
  }

  .message-box.message-box-1,
  .message-box.message-box-3,
  .message-box.message-box-5,
  .message-box.message-box-6,
  .message-box.message-box-7 {
    display: none;
  }

  .message-box.message-box-2 {
    bottom: -80px;
    right: 93px;
    top: auto;
    transform: none;
  }

  .message-box.message-box-4 {
    top: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
  }

  .team-title {
    font-size: 32px;
    padding: 0 40px;
    letter-spacing: 0;
  }

  .team-title .team-title-highlight {
    font-size: 32px;
  }

  .team-subtitle {
    font-size: 18px;
    padding: 0 35px;
    letter-spacing: 0;
  }

  .team-description {
    display: none;
  }

  .team-image-wrapper {
    display: none;
  }

  .mobile-team-image-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .mobile-team-image-wrapper .mobile-team-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .mobile-team-image-wrapper .mobile-team-image:nth-child(3) {
    width: 70%;
  }

  .team-section {
    padding: 80px 0;
  }

  .footer-text {
    display: none;
  }

  .footer {
    min-height: auto;
    padding: 40px 10px;
  }

  .footer-top-button {
    display: none;
  }

  .footer-copyright,
  .footer-copyright-bold {
    font-size: 12px;
  }

  .footer-copyright-wrapper {
    padding: 0;
  }

  .footer-content {
    padding: 0;
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-left {
    width: 100%;
    justify-content: center;
  }

  .footer-center {
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .page-content {
    padding: 200px 40px 50px 40px;
  }
}