@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary-color: #112639;
}

section {
  padding: 3rem;
}

section .container {
  width: 100%;
}

h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

h2,
h2 > span {
  font-size: 28px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

h2 + p {
  text-align: center;
}

h3,
h3 > span {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

h4,
h4 > span {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

h5,
h5 > span {
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

h6,
h6 > span {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

a.cta {
  font-family: "Open Sans", sans-serif;
}

a.cta:hover {
  background-color: #ff7373 !important;
  color: #fff !important;
}

.hero {
  margin-top: 72px;
  background-color: var(--primary-color);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.hero .left {
  flex: 2;
  padding-right: 2rem;
}

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

.hero img {
  width: 300px;
}

.hero p {
  margin-bottom: 1.5rem;
}

.hero .btn-container {
  display: flex;
  gap: 1rem;
}

/* Stats Section */
.stats {
  padding-top: 6rem;
}

.stats .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats .stats-container {
  background-color: #f1f1f0;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
}

.stats p {
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.stats h2 {
  font-weight: 600;
  font-size: 32px;
}

/* Content Section */
.content-cont p,
.content-cont p > span {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 3rem;
}

.content-cont h2 {
  margin-bottom: 2rem;
}

.content-cont h2:not(:first-of-type) {
  margin-top: 8rem;
}

.content-cont .container > div > ul,
.content-cont .container > ul,
.content-cont .container > div > ol,
.content-cont .container > ol {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex: 1;
  flex-wrap: wrap;
}

.content-cont .container > div > ul > li,
.content-cont .container > ul > li,
.content-cont .container > div > ol > li,
.content-cont .container > ol > li {
  background: #ffffff8d;
  padding: 25px;
  border: 2px solid rgba(17, 38, 57, 0.7);
  border-radius: 20px;
  width: calc((100% / 3) - 2rem);
  transition: 0.3s;
}

.content-cont .container > div > ul > li:hover,
.content-cont .container > ul > li:hover,
.content-cont .container > div > ol > li:hover,
.content-cont .container > ol > li:hover {
  transform: translateY(-5px);
}

.content-cont ul li span strong,
.content-cont ol li span strong {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: black;
}

.content-cont .container > div > ul ul,
.content-cont .container > ul ul,
.content-cont .container > div > ol ol,
.content-cont .container > ol ol {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem 0;
  list-style: disc;
  padding-left: 3rem;
}

.content-cont .container > div > ul ul li span,
.content-cont .container > ul ul li span,
.content-cont .container > div > ul ul li,
.content-cont .container > ul ul li,
.content-cont .container > div > ol ol li span,
.content-cont .container > ol ol li span,
.content-cont .container > div > ol ol li,
.content-cont .container > ol ol li {
  font-family: "Open Sans", sans-serif;
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
}

.content-cont .container > div > ul:not(:has(ul)),
.content-cont .container > ul:not(:has(ul)) {
  list-style: none;
}

.content-cont .container > div > ol:not(:has(ol)),
.content-cont .container > ol:not(:has(ol)) {
  list-style: none;
  padding-left: 0;
}

.content-cont .container > div > ul:not(:has(ul)) li span,
.content-cont .container > ul:not(:has(ul)) li span,
.content-cont .container > div > ul:not(:has(ul)) li,
.content-cont .container > ul:not(:has(ul)) li,
.content-cont .container > div > ol:not(:has(ol)) li span,
.content-cont .container > ol:not(:has(ol)) li span,
.content-cont .container > div > ol:not(:has(ol)) li,
.content-cont .container > ol:not(:has(ol)) li {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
}

/* CTA Section */
.testimonial-slider-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  position: relative;
}

.testimonials-sec .owl-carousel .owl-stage {
  display: flex;
}

.testimonials-sec .owl-carousel .owl-item {
  display: flex;
  height: auto;
}

.testimonial-item {
  padding: 0 0.25rem;
  display: flex;
  width: 100%;
}

.testimonial-card {
  position: relative;
  background: #f6f6f7;
  border-radius: 14px;
  padding: 2rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonial-quote-mark {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 13px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%27101%27%20height%3D%2780%27%20viewBox%3D%270%200%20101%2080%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M81.6436%2040.88C92.8579%2040.88%20100.415%2048.8218%20100.415%2060.5891C100.415%2071.1782%2091.7293%2080%2079.965%2080C67.0793%2080%2057.5579%2069.4109%2057.5579%2053.2364C57.5579%2016.4727%2083.8865%201.76727%20100.415%200V16.1745C89.2079%2018.2327%2076.6079%2029.7018%2076.0436%2042.3564C76.6079%2042.0655%2078.8436%2040.88%2081.6436%2040.88ZM24.5079%2040.88C35.7079%2040.88%2043.2722%2048.8218%2043.2722%2060.5891C43.2722%2071.1782%2034.5865%2080%2022.8222%2080C9.93647%2080%200.415039%2069.4109%200.415039%2053.2364C0.415039%2016.4727%2026.7436%201.76727%2043.2722%200V16.1745C32.065%2018.2327%2019.465%2029.7018%2018.9008%2042.3564C19.465%2042.0655%2021.7008%2040.88%2024.5079%2040.88Z%27%20fill%3D%27%231F3357%27/%3E%3C/svg%3E");
}

.testimonial-text {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 88%;
  display: inline;
}

.testimonial-text::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2798%27%20height%3D%2780%27%20viewBox%3D%270%200%2098%2080%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M18.7931%2040.88C7.91527%2040.88%200.584839%2048.8218%200.584839%2060.5891C0.584839%2071.1782%209.00999%2080%2020.4213%2080C32.9205%2080%2042.1563%2069.4109%2042.1563%2053.2364C42.1563%2016.4727%2016.6175%201.76727%200.584839%200V16.1745C11.4558%2018.2327%2023.6778%2029.7018%2024.2251%2042.3564C23.6778%2042.0655%2021.5091%2040.88%2018.7931%2040.88ZM74.2148%2040.88C63.3508%2040.88%2056.0134%2048.8218%2056.0134%2060.5891C56.0134%2071.1782%2064.4386%2080%2075.8499%2080C88.3491%2080%2097.5848%2069.4109%2097.5848%2053.2364C97.5848%2016.4727%2072.0461%201.76727%2056.0134%200V16.1745C66.8843%2018.2327%2079.1063%2029.7018%2079.6537%2042.3564C79.1063%2042.0655%2076.9377%2040.88%2074.2148%2040.88Z%27%20fill%3D%27%231F3357%27/%3E%3C/svg%3E");
  margin-left: 10px;
  vertical-align: -webkit-baseline-middle;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #1b4ea1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-info strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
}

.testimonial-author-info span {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.3;
}

.testimonials-sec .owl-theme .owl-nav {
  margin-top: 0;
}

.testimonials-sec .owl-carousel .owl-nav button.owl-prev,
.testimonials-sec .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  border: 0;
  background: transparent;
  color: #d0d0d0;
  font-size: 34px;
  line-height: 1;
  padding: 4px 8px;
}

.testimonials-sec .owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}

.testimonials-sec .owl-carousel .owl-nav button.owl-next {
  right: -30px;
}

.testimonials-sec .owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  color: #9ca3af;
}

.testimonials-sec .owl-theme .owl-dots {
  margin-top: 0;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
}

.testimonials-sec .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 5px;
  background: #b9bcc3;
  display: block !important;
}

.testimonials-sec .owl-theme .owl-dots .owl-dot.active span {
  background: #111827;
}

.cta-sec .container {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem;
  border-radius: 25px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cta-sec p {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 16px;
  margin-bottom: 2rem;
}

.cta-sec .btn-container {
  display: flex;
  gap: 2rem;
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero .right {
    display: none;
  }

  .hero .left {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .hero h1 {
    margin-bottom: 0;
  }

  .content-cont .container > div > ul > li,
  .content-cont .container > ul > li,
  .content-cont .container > div > ol > li,
  .content-cont .container > ol > li {
    width: calc((100% / 2) - 2rem);
  }
}

@media (max-width: 768px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p {
    font-size: 15px;
  }

  .hero {
    margin-top: 63px;
  }

  .stats .stats-container {
    width: 100%;
    flex-direction: column;
    gap: 6rem;
    padding: 4rem 2rem;
  }

  .content-cont .container > div > ul > li,
  .content-cont .container > ul > li,
  .content-cont .container > div > ol > li,
  .content-cont .container > ol > li {
    width: 100%;
  }

  .cta-sec .container {
    padding: 3rem 3rem;
  }

  .cta-sec .btn-container {
    flex-direction: column;
  }

  .testimonial-card {
    padding: 1.25rem 1.25rem 2.4rem;
  }

  .testimonial-quote-mark {
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }

  .testimonial-quote-mark::before {
    width: 20px;
    height: 16px;
  }

  .testimonial-text::after {
    width: 19px;
    height: 15px;
  }

  .testimonial-text {
    font-size: 15px;
    max-width: 100%;
  }

  .testimonials-sec .owl-carousel .owl-nav button.owl-prev,
  .testimonials-sec .owl-carousel .owl-nav button.owl-next {
    font-size: 26px;
  }

  .testimonials-sec .owl-carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .testimonials-sec .owl-carousel .owl-nav button.owl-next {
    right: -20px;
  }
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  transition: background-color 0.3s;
  min-width: 0;
  gap: 12px;
  overflow-wrap: break-word;
}

.faq-question > p,
.faq-question > h3 {
  color: black;
  font-size: 16px;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  color: #1e5ac880;
  line-height: 1.6;
  font-size: 15px;
}

.faq-answer p {
  color: var(--primary-color);
  line-height: 1.6;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 15px 20px;
    font-size: 1.2rem;
    line-height: 1.4;
    gap: 12px;
    align-items: flex-start;
  }

  .faq-question::after {
    flex-shrink: 0;
    margin-left: 8px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 2000px;
  }
}
