/* Mirrors MainPage.jsx section order & NewHome components (static landing body) */

/* --- Visibility (matches desktop/mobile split) --- */
@media (max-width: 767px) {
  .sl-desktop-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sl-mobile-only {
    display: none !important;
  }
}

/* --- OtherCompanies --- */
.sl-occ {
  width: 100%;
  background: #fafafa;
}

.sl-occ__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  max-width: 120rem;
  margin: 0 auto;
}

.sl-occ__title {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  text-align: center;
  margin: 0;
}

.sl-occ__sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4d4d4d;
  text-align: center;
  margin: 0.5rem 1.5rem 0;
}

@media (max-width: 767px) {
  .sl-occ__title {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .sl-occ__sub {
    font-size: 1rem;
    line-height: 1.2;
  }
}

.sl-occ__marquee {
  overflow: hidden;
  width: 96%;
  margin-top: 0.5rem;
}

.sl-occ__track {
  display: flex;
}

.sl-occ__logos {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: sl-marquee-scroll 19s linear infinite;
}

.sl-occ__logos img {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sl-occ__logos img {
    width: 70px;
    height: 70px;
  }

  .sl-occ__logos {
    gap: 15px;
  }
}

@keyframes sl-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- ProjectManagementContainer --- */
.sl-proj-page-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0 1.5rem 2rem;
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .sl-proj-page-title {
    font-size: 2rem;
    margin-bottom: 3.88rem;
  }
}

.sl-proj-stack {
  display: flex;
  flex-direction: column;
  gap: 3.98rem;
  margin-bottom: 3.3rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sl-proj-stack {
    gap: 6.69rem;
    margin-bottom: 6rem;
  }
}

.sl-proj-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.77rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .sl-proj-row--reverse {
    flex-direction: column-reverse;
  }
}

@media (min-width: 768px) {
  .sl-proj-row {
    flex-direction: row;
    gap: 7.37rem;
  }

  .sl-proj-row--reverse {
    flex-direction: row;
  }
}

.sl-proj-img {
  width: 19.5rem;
  height: auto;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .sl-proj-img {
    width: 41.5rem;
    height: auto;
    max-height: 28.82rem;
    object-fit: contain;
  }
}

.sl-proj-text {
  max-width: 28.625rem;
  text-align: center;
}

@media (min-width: 768px) {
  .sl-proj-text {
    text-align: left;
  }
}

.sl-proj-tag {
  display: inline-block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  background: #eaf5fa;
}

.sl-proj-tag--cost {
  background: #f3eafa;
}

.sl-proj-tag--client {
  background: #dcf9f0;
}

.sl-proj-tagTxt {
  color: #247ba0;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .sl-proj-tagTxt {
    font-size: 1rem;
    font-weight: 500;
  }
}

.sl-proj-tagTxt--cost {
  color: #7b2cbf;
}

.sl-proj-tagTxt--client {
  color: #1a936f;
}

.sl-proj-h {
  color: #1d3557;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0.75rem 0;
}

@media (min-width: 768px) {
  .sl-proj-h {
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin: 1rem 0;
  }
}

.sl-proj-p {
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.35;
  margin: 0;
}

@media (min-width: 768px) {
  .sl-proj-p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.sl-proj-more {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.79rem;
  border-radius: 0.357rem;
  border: 0.535px solid #d7d7d7;
  color: #0084ef;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 768px) {
  .sl-proj-more {
    margin-top: 2rem;
    padding: 0.88rem;
    border: 0.75px solid #2053c5;
    color: #2053c5;
    font-size: 1rem;
    font-weight: 500;
  }

  .sl-proj-more:hover {
    border-color: #0084ef;
  }

  .sl-proj-more:hover .sl-proj-arrow {
    display: inline-block;
  }
}

.sl-proj-arrow {
  display: none;
  width: 1.125rem;
  height: 1.125rem;
}

.sl-proj-mobbox {
  position: relative;
  display: inline-flex;
  padding: 0.636rem;
  flex-direction: column;
  border-radius: 0.424rem;
  margin: 0 1.5rem;
  min-height: 12rem;
  width: calc(100% - 3rem);
  max-width: 22rem;
}

.sl-proj-mobmain {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.sl-proj-costTop {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 4.916rem;
  height: auto;
  border-radius: 0.214rem;
  box-shadow: 0 1.172px 3.515px rgba(0, 0, 0, 0.12);
}

.sl-proj-costBtm {
  position: absolute;
  left: 0.25rem;
  bottom: 0.5rem;
  width: 11.2rem;
  height: auto;
  box-shadow: 0 1.172px 3.515px rgba(0, 0, 0, 0.12);
}

.sl-proj-clientTop {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 6.52rem;
  height: auto;
  border-radius: 0.132rem;
  box-shadow: 0 1.172px 3.515px rgba(0, 0, 0, 0.12);
}

.sl-proj-clientBtm {
  position: absolute;
  right: 0.2rem;
  bottom: 0.5rem;
  width: 8.1rem;
  height: auto;
  box-shadow: 0 1.172px 3.515px rgba(0, 0, 0, 0.12);
}

/* --- CustomerStory --- */
.sl-cstory {
  background: #f2f5fd;
}

.sl-cstory__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sl-cstory__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 72px 90px;
    gap: 0;
  }
}

.sl-cstory__text {
  text-align: center;
}

@media (min-width: 768px) {
  .sl-cstory__text {
    text-align: left;
  }
}

.sl-cstory__eyebrow {
  color: #2053c5;
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .sl-cstory__eyebrow {
    font-size: 20px;
  }
}

.sl-cstory__quote {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 24px 0 0;
  color: #111;
}

@media (min-width: 768px) {
  .sl-cstory__quote {
    font-size: 25px;
    line-height: normal;
    max-width: 560px;
  }
}

.sl-cstory__name {
  margin: 29px 0 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sl-cstory__name {
    font-size: 18px;
  }
}

.sl-cstory__role {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sl-cstory__role {
    font-size: 18px;
  }
}

.sl-cstory__cta {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

.sl-cstory__cta a {
  color: #0084ef;
  font-weight: 600;
  text-decoration: none;
}

.sl-cstory__cta a:hover {
  text-decoration: underline;
}

.sl-cstory__img {
  width: 300px;
  height: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sl-cstory__img {
    width: 500px;
    height: auto;
  }
}

/* --- Testimonials desktop --- */
.sl-tst {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sl-tst__title {
  text-align: center;
  color: #333;
  font-size: 32px;
  font-weight: 600;
  margin: 5.69rem 0 0;
}

.sl-tst__sub {
  text-align: center;
  color: #4d4d4d;
  margin: 1rem auto 0;
  max-width: 40rem;
}

.sl-tst__explore {
  text-align: center;
  margin: 0.75rem auto 0;
  font-size: 0.9375rem;
  color: #666;
}

.sl-tst__explore a {
  color: #0084ef;
  font-weight: 600;
  text-decoration: none;
}

.sl-tst__explore a:hover {
  text-decoration: underline;
}

.sl-tst__layout {
  display: flex;
  margin-top: 4.13rem;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.sl-tst__people {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 280px;
}

.sl-tst__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ededed;
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}

.sl-tst__person--active {
  border-color: #2053c5;
  box-shadow: 0 4px 16px rgba(153, 153, 153, 0.12);
}

.sl-tst__person img {
  border-radius: 50%;
  object-fit: cover;
}

.sl-tst__pd {
  display: flex;
  flex-direction: column;
}

.sl-tst__nm {
  font-weight: 600;
  color: #333;
}

.sl-tst__co {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.sl-tst__panel {
  flex: 1;
  min-width: 280px;
  max-width: 36rem;
  padding: 1.5rem;
  border: 1px solid #ededed;
  border-radius: 1rem;
  background: #fff;
}

.sl-tst__headline {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #333;
}

.sl-tst__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.sl-tst__body {
  color: #4d4d4d;
  line-height: 1.6;
  margin: 0;
}

/* --- Testimonials mobile --- */
.sl-tstm {
  padding: 2rem 1.25rem;
}

.sl-tstm__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.sl-tstm__sub {
  text-align: center;
  color: #666;
  margin: 0.5rem 0 1.5rem;
}

.sl-tstm__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sl-tstm__card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ededed;
  border-radius: 0.75rem;
  background: #fafafa;
}

.sl-tstm__card img {
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.sl-tstm__name {
  font-weight: 600;
  color: #333;
}

.sl-tstm__role {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0;
}

.sl-tstm__stars {
  display: flex;
  gap: 0.15rem;
  margin: 0.5rem 0;
}

.sl-tstm__desc {
  font-size: 0.9375rem;
  color: #4d4d4d;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

/* --- ArticleSection (ArticleSection.module.css) --- */
.sl-art {
  width: 100%;
  background: #f0f8fe;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.sl-art__mainContainer {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  background: #f0f8fe;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sl-art {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.sl-art__flexOuter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 0;
  margin-bottom: 3rem;
  flex-direction: column;
  width: 19.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.sl-art__heading {
  color: #2e548a;
  text-align: center;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 3.38rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.sl-art__grid.sl-art__articleFlexContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sl-art__flexOuter {
    flex-direction: row;
    align-items: center;
    margin-top: 5.44rem;
    margin-bottom: 5.44rem;
    padding: 0;
    width: 100%;
    max-width: none;
  }

  .sl-art__heading {
    color: #1d3557;
    font-size: 2.125rem;
    text-align: left;
    max-width: 12.4375rem;
    margin: 9.37rem 1.5rem 10.75rem 0;
  }

  .sl-art__grid.sl-art__articleFlexContainer {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    margin-top: 1.25rem;
    margin-bottom: 3rem;
    justify-content: center;
    gap: 1.4rem;
  }
}

.sl-art__card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 11.2rem;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 3.6px 14.4px rgba(154, 170, 207, 0.15);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sl-art__card {
    width: 20.25rem;
    min-height: 16.9rem;
  }
}

.sl-art__logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.sl-art__txt {
  color: rgba(33, 33, 33, 0.6);
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0.65rem 0 0;
  width: 15.99rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sl-art__txt {
    font-size: 1.05063rem;
    margin-top: 1.4rem;
  }
}

.sl-art__txt--second {
  width: 18.1875rem;
}

.sl-art__date {
  color: rgba(33, 33, 33, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.5rem 0 2.25rem;
}

@media (min-width: 768px) {
  .sl-art__date {
    font-size: 0.8125rem;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.sl-art__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0084ef;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
}

@media (min-width: 768px) {
  .sl-art__link {
    font-size: 0.93388rem;
  }
}

.sl-art__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.sl-art__link:hover img {
  display: inline-block;
}

.sl-art__link img {
  display: none;
}

/* --- JoinOnMobile (JoinOnMobile.module.css) — .container + .contain width 85% --- */
.sl-join {
  margin-top: 6.25rem;
  margin-bottom: 8rem;
  display: flex;
  justify-content: center;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.sl-join__inner {
  width: 85%;
  max-width: none;
  min-height: 26rem;
  height: 26rem;
  background: linear-gradient(86.11deg, #fffafa -33.53%, #cde2ff 53.63%);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sl-join__inner {
    flex-direction: row;
    gap: 6rem;
    padding: 2rem 3rem;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .sl-join {
    margin-bottom: 3.75rem;
    padding-top: 3.25rem;
    margin-top: 0;
  }

  .sl-join__inner {
    width: 92%;
    min-height: 200px;
    height: auto;
    border-radius: 1.11156rem;
    overflow-y: hidden;
  }

  .sl-join__title {
    font-size: 1rem;
    margin-bottom: 0.56rem;
  }

  .sl-join__para {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 0.875rem;
    letter-spacing: 0.00625rem;
    max-width: 8.5rem;
  }
}

.sl-join__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -2.9rem;
}

.sl-join__img img {
  width: 16rem;
  max-width: 100%;
  height: auto;
}

.sl-join__title {
  font-size: 28px;
  font-weight: 700;
  color: #132339;
  margin: 0 0 0.5rem;
}

.sl-join__para {
  color: #464646;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  line-height: 2rem;
  letter-spacing: 0.0125rem;
  font-weight: 500;
  max-width: 26.875rem;
}

.sl-join__dl {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.sl-join__stores {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .sl-join__stores {
    flex-direction: row;
    align-items: center;
  }
}

.sl-join__stores img {
  height: 48px;
  width: auto;
}

/* --- AboveFooter (AboveFooter.module.css) --- */
.sl-aboveft {
  background-image: url("https://storage.googleapis.com/idesign-quotation/NO_COMPANYNAME/AboveFooterImg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sl-aboveft__contain {
  min-height: 39.375rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 3.62rem;
  padding-bottom: 2.5rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 90rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sl-aboveft__title {
  color: #fff;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 0;
}

.sl-aboveft__para {
  color: #fff;
  text-align: center;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 1.06rem 0 0;
  max-width: 42rem;
  padding: 0 0.5rem;
}

.sl-aboveft__btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.25rem;
  width: min(70%, 44rem);
  max-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.sl-aboveft__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.5rem;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  flex: 1 1 12rem;
  min-width: min(100%, 12rem);
  max-width: calc(50% - 0.625rem);
  box-sizing: border-box;
}

/* btn2 — primary (Schedule a Demo) */
.sl-aboveft__btn--demo {
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  background: #0084ef;
}

.sl-aboveft__btn--demo:hover {
  box-shadow: 0 6px 16px 0 rgba(172, 173, 174, 0.2);
}

/* btnn1 — secondary (Get Started) */
.sl-aboveft__btn--start {
  padding: 0.75rem 2.75rem;
  color: #0084ef;
  background: #fff;
  border: none;
}

.sl-aboveft__btn--start:hover {
  background: #ebf6ff;
}

@media (max-width: 767px) {
  .sl-aboveft {
    background-image: url("https://storage.googleapis.com/idesign-quotation/NO_COMPANYNAME/Bottom%20CTA.png");
    height: 18.175rem;
    align-items: center;
    justify-content: center;
  }

  .sl-aboveft__contain {
    height: auto;
    min-height: 0;
    margin-top: -4rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1.25rem;
  }

  .sl-aboveft__title {
    font-size: 1rem;
    font-weight: 700;
    margin-left: 2.37rem;
    margin-right: 2.37rem;
  }

  .sl-aboveft__para {
    color: #f5f5f5;
    font-size: 0.75rem;
    margin-top: 0.27rem;
    margin-bottom: 0.5rem;
  }

  .sl-aboveft__btns {
    width: 88%;
    max-width: 22rem;
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .sl-aboveft__btn {
    font-size: 0.75rem;
    padding: 0.75rem 1.125rem;
    font-weight: 600;
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 0;
    max-width: calc(50% - 0.375rem);
  }
}

@media (max-width: 380px) {
  .sl-aboveft__btns {
    flex-direction: column;
    width: 85%;
  }

  .sl-aboveft__btn {
    max-width: 100%;
    flex: 1 1 auto;
  }
}

/* FAQ: full width; no extra top padding (heading uses FAQ.module margin-top) */
.sl-faq.sl-section {
  max-width: none;
  width: 100%;
  padding-top: 0;
  padding-bottom: 2rem;
}

/* --- FAQ (FAQ.module.css) --- */
.sl-faq__title {
  color: #2e548a;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.37rem;
  margin-bottom: 0;
}

.sl-faq__qAndACon {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 2rem;
}

.sl-faq__item {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  max-width: 77.5rem;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  background: #fff;
  margin-top: 1.5rem;
  border: 1px solid #ededed;
  box-sizing: border-box;
}

.sl-faq__item:hover {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(153, 153, 153, 0.12);
}

.sl-faq__q {
  cursor: pointer;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;
  box-sizing: border-box;
  color: #565656;
}

.sl-faq__q:hover .sl-faq__qText {
  color: #404040;
}

.sl-faq__item[open] .sl-faq__qText {
  color: #404040;
}

.sl-faq__qText {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 0;
  align-items: flex-start;
}

.sl-faq__toggle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  opacity: 0.6;
  font-size: 12px;
  font-weight: 300;
  color: #bfbfbf;
  line-height: 1;
}

.sl-faq__toggle::before {
  content: "+";
}

.sl-faq__item[open] .sl-faq__toggle::before {
  content: "\2212";
}

.sl-faq__item:hover .sl-faq__toggle {
  opacity: 1;
}

.sl-faq__q::-webkit-details-marker {
  display: none;
}

.sl-faq__item[open] {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(153, 153, 153, 0.12);
}

.sl-faq__a {
  padding-left: 1.5rem;
  margin-top: 0.75rem;
  color: #717171;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8125rem;
  border-top: none;
}

.sl-faq__a a {
  color: #0084ef;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.sl-faq__thirdAnswer {
  color: #717171;
}

.sl-faq__ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
  list-style: disc;
}

.sl-faq__ul li {
  margin-bottom: 1rem;
  color: #717171;
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 767px) {
  .sl-faq__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: normal;
    margin-top: 2rem;
  }

  .sl-faq__qAndACon {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sl-faq__item {
    width: auto;
    max-width: none;
    padding: 0.75rem;
  }

  .sl-faq__q {
    color: #212529;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3rem;
    gap: 10px;
  }

  .sl-faq__toggle {
    margin-left: 2rem;
    width: 0.75rem;
    height: 0.75rem;
    font-size: 0.65rem;
  }

  .sl-faq__a {
    padding: 0.62rem 1rem;
    margin-top: 0;
    color: #666;
    font-size: 0.75rem;
    line-height: normal;
  }

  .sl-faq__ul li {
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

/* --- NewFooter (NewFooter.module.css) --- */
.sl-nf {
  background: #f5faff;
}

.sl-nf__mainContainer {
  display: flex;
  padding: 1rem 5rem;
  justify-content: space-between;
  background-color: #fff;
  box-sizing: border-box;
}

.sl-nf__firstContainer {
  display: flex;
  gap: 6rem;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.sl-nf__innerMainContainer {
  width: 25%;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.sl-nf__logoImg {
  width: 9.125rem;
  height: auto;
  display: block;
}

.sl-nf__footerPara {
  font-family: Inter, "Public Sans", system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  opacity: 0.6;
  width: 250px;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.sl-nf__socialIconContainer {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.sl-nf__footerRight {
  display: flex;
  gap: 3rem;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
}

.sl-nf__footerRightFirst {
  display: flex;
  gap: 5rem;
}

.sl-nf__flexColFooter {
  margin-top: 0.5rem;
}

.sl-nf__flexColFooterHeading {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #17264c;
  margin: 0 0 1.5rem;
}

.sl-nf__flexColFooterItems {
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin-bottom: 0.25rem;
  text-decoration: none;
  padding: 0.25rem 0;
  box-sizing: border-box;
}

.sl-nf__flexColFooterItems:hover {
  color: #0084ef;
  cursor: pointer;
}

.sl-nf__flexColFooterItems--static {
  cursor: default;
}

.sl-nf__flexColFooterItems--static:hover {
  color: #666;
}

@media (min-width: 768px) {
  .sl-nf__logoImg {
    width: 14.4rem;
    height: auto;
  }
}

@media (max-width: 767px) {
  .sl-nf__mainContainer {
    padding-left: 1.38rem;
    padding-right: 1.38rem;
    padding-top: 0;
  }

  .sl-nf__firstContainer {
    gap: 0.84rem;
    flex-direction: column;
  }

  .sl-nf__innerMainContainer {
    align-items: center;
    width: 100%;
  }

  .sl-nf__footerPara {
    width: 19.3rem;
    max-width: 100%;
    color: #0a142f;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 0.9375rem;
    opacity: 1;
    text-align: center;
  }

  .sl-nf__socialIconContainer {
    gap: 0.75rem;
    margin-top: 1.28rem;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .sl-nf__footerRight {
    flex-direction: column;
    gap: 1.94rem;
    width: 100%;
    justify-content: flex-start;
  }

  .sl-nf__footerRightFirst {
    gap: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sl-nf__flexColFooter {
    width: 50%;
    margin-top: 0;
    box-sizing: border-box;
    padding: 0 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sl-nf__flexColFooterHeading {
    color: #17264c;
    font-family: Inter, "Public Sans", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .sl-nf__flexColFooterItems {
    color: #0a142f;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    padding: 0.5rem 0;
  }

  .sl-nf__flexColFooterItems:hover {
    color: #0084ef;
    opacity: 1;
  }

  .sl-nf__flexColFooterItems--static:hover {
    color: #0a142f;
    opacity: 0.5;
  }
}

.sl-nf__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid #ededed;
  padding: 1.5rem 5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sl-nf__countries {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #0a142f;
}

.sl-nf__countries--mob {
  justify-content: center;
  margin-bottom: 1.58rem;
}

.sl-nf__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(10, 20, 47, 0.4);
}

.sl-nf__copy {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #0a142f;
}

.sl-nf__barMob {
  background: #f5faff;
  padding-top: 1.58rem;
}

.sl-nf__rule {
  width: 100%;
  height: 2px;
  background: #ededed;
}

.sl-nf__copyMob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  text-align: center;
}

.sl-nf__spacer {
  height: 5.75rem;
  background: #fff;
}
