*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  background: #fff;
}

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

.logo {
  display: block;
  max-height: 48px;
  width: auto;
}

.cta-btn {
  display: inline-block;
  background: #0C2F32;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 600;
}

.hero {
  min-height: 635px;
  background-image:
    linear-gradient(to bottom,
      rgba(255,255,255,0.12) 0%,
      rgba(255,255,255,0.18) 40%,
      rgba(255,255,255,0.55) 78%,
      rgba(255,255,255,0.85) 100%
    ),
    url("assets/images/abstract-image-business-people-silhouette-glass-window.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
}

.hero-content {
  max-width: 900px;
  margin: -80px auto 0;
}

.hero-title {
  margin: 0;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
}

.title-accent {
  color: #D9852C;
}

.title-dark {
  color: #222;
}

.hero-subtext {
  margin: 16px auto 0;
  font-size: 22px;
  color: #555;
}

.ribbon {
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 60px;
  transform: translateY(50%);
  background: #F4F4F4;
  border-radius: 20px;
  padding: 16px 150px;
  margin-bottom: 90px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  box-sizing: border-box;
}

.ribbon-left {
  flex-shrink: 0;
  overflow: visible;
}

.ribbon-left {
  position: relative;
}

/* Chatbot animation */
.chatbot-image {
  width: 220px;
  animation: botDriftJump 6s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(0, 180, 200, 0.35));
  will-change: transform;
}

/* Hover interaction */
.chatbot-wrap:hover .chatbot-image {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.03);
}

/* Unique drift + jump animation */
@keyframes botDriftJump {
  0% {
    transform: translate(0, 0) scale(1);
  }

  20% {
    transform: translate(-14px, 0) scale(1);
  }

  40% {
    transform: translate(0, -16px) scale(1.03);
  }

  50% {
    transform: translate(0, 0) scale(1);
  }

  70% {
    transform: translate(14px, 0) scale(1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.ribbon-right {
  flex: 1;
  min-width: 0;
}

.chatbot-image {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0;
}

.ribbon-heading {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.ribbon-text {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
}

/* Awards Section */
.awards-section {
  width: 100%;
  padding: 90px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop: Reduce awards section padding */
@media (min-width: 1025px) {
  .awards-section {
    padding: 125px 24px 50px;
  }
}

.awards-container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.awards-small-heading {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
}

.awards-title {
  font-size: 36px;
  font-weight: 600;
  color: #296c78;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.award-pill {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  background: #E6E7E8;
  border-radius: 999px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.award-text-left,
.award-text-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.award-title {
  font-weight: 600;
  font-size: 24px;
  color: #333;
  margin-bottom: 4px;
}

.award-subtext {
  font-size: 24px;
  color: #666;
}

.award-badge-wrapper {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.award-badge {
  height: 140px;
  width: auto;
  margin-top: -20px;
  margin-bottom: -20px;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 0 2px rgba(255, 255, 255, 0.8));
}

.awards-description {
  font-size: 19px;
  color: #333;
  width: 75%;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.awards-cta-btn {
  display: inline-block;
  background: #0C2F32;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
}

/* Content Section */
.content-section {
  width: 100%;
  padding: 90px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  max-width: 1100px;
  width: 100%;
}

.content-block {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 70px;
}

.block-1 {
  gap: 50px;
}

.block-1 .content-image {
  flex: 0.7;
  max-width: 45%;
  height: 450px;
}

.block-1 .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.block-1 .content-text {
  flex: 1.3;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-text {
  flex: 1;
  text-align: left;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-heading {
  font-size: 42px;
  font-weight: 600;
  color: #D9852C;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.content-subheading {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 28px 0;
  line-height: 1.3;
}

.content-paragraph {
  font-size: 22px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.content-paragraph:last-child {
  margin-bottom: 0;
}

.content-image {
  flex: 1;
  overflow: hidden !important;
  border-radius: 20px !important;
  position: relative;
}

.content-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  display: block;
  border-radius: 20px !important;
  object-fit: cover;
  object-position: center;
}

.block-2 {
  flex-direction: row;
  gap: 50px;
}

.block-2 .content-image {
  flex: 0.7;
  max-width: 45%;
  height: 450px;
}

.block-2 .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.block-2 .content-text {
  flex: 1.3;
}

/* Features Section */
.features-section {
  width: 100%;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.icon-card {
  background: #0C2F32;
  border-radius: 14px;
  padding: 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: block;
}

.icon-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 4px;
  text-align: center;
}

.icon-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  text-align: center;
}

.banner-card {
  background: #F6F6F6;
  border-radius: 14px;
  padding: 28px;
  display: grid;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
  box-sizing: border-box;
}

.banner-card:last-child {
  margin-bottom: 0;
}

.how-it-works {
  grid-template-columns: 1fr 420px;
}

.who-is-it-for {
  grid-template-columns: 420px 1fr;
}

.banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-it-works .banner-text {
  padding-left: 20px;
}

.who-is-it-for .banner-text {
  padding-right: 20px;
}

.banner-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0C2F32;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.banner-body {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.banner-image-wrapper {
  overflow: hidden;
  min-height: 160px;
  max-height: 220px;
  height: 100%;
}

.banner-image-right {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Slanted image edge (desktop) — use an overlay wedge so border-radius stays truly rounded */
.how-it-works .banner-image-right {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

/* "How It Works" (image on right): slant the LEFT edge */
.how-it-works .banner-image-right::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -80px;
  width: 160px;
  background: #F6F6F6; /* same as .banner-card background */
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
}

/* "Who Is It For" (image on left): slant the RIGHT edge */
.who-is-it-for .banner-image-left {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.who-is-it-for .banner-image-left::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  right: -60px;
  width: 120px;
  background: #F6F6F6; /* same as .banner-card background */
  transform: skewX(18deg);
  pointer-events: none;
  z-index: 2;
}

.banner-image-left {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop: Increase font sizes for banner headings and body text */
@media (min-width: 1025px) {
  .banner-heading {
    font-size: 32px;
  }

  .banner-body {
    font-size: 18px;
  }
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.testimonials-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0C2F32;
  margin: 0 0 40px 0;
  text-align: center;
}

.testimonials-slider-wrapper {
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 14px;
  padding: 32px;
  min-height: 260px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 16px);
  min-width: calc(50% - 16px);
}

.quote-icon {
  font-size: 72px;
  color: #D9852C;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: bold;
}

.star-rating {
  margin-bottom: 16px;
}

.star {
  color: #F7C22F;
  font-size: 20px;
  display: inline-block;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 17px;
  color: #294345;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-top: auto;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.cta-btn-orange {
  display: inline-block;
  background: #D9852C;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 28px;
  font-size: 18px;
  font-weight: 600;
}

.cta-btn-teal {
  display: inline-block;
  background: #0C2F32;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 28px;
  font-size: 18px;
  font-weight: 600;
}

/* Story Section */
.story-section {
  width: 100%;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
}

.story-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0C2F32;
  margin: 0 0 8px 0;
  text-align: center;
}

.story-subheading {
  font-size: 19px;
  color: #333;
  line-height: 1.5;
  margin: 8px 0 0 0;
  text-align: center;
}

.story-grey-box {
  border-radius: 16px;
  padding: 40px;
  max-width: 950px;
  margin: 40px auto;
  text-align: center;
}

.story-question {
  color: #D9852C;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px 0;
}

.story-body {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.story-green-box {
  background: #0C2F32;
  border-radius: 16px;
  padding: 36px;
  max-width: 850px;
  margin: 40px auto;
  text-align: left;
  color: #FFFFFF;
}

.story-vision-title {
  font-weight: 700;
  font-size: 21px;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-align: center;
}

.story-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Desktop: Add more padding to checklist */
@media (min-width: 1025px) {
  .story-checklist {
    padding: 0 100px;
  }
}

.story-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.story-checklist li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}

.story-built-text {
  font-size: 24px;
  color: #333;
  margin: 40px 0 24px 0;
  text-align: center;
  font-weight: 500;
}

.story-image-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.story-image-card {
  background: #F6F6F6;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.story-image-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.story-card-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  padding: 16px 20px 20px;
  margin: 0;
}

.story-emphasis {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 8px 0;
  color: #333;
}

.highlight-orange {
  color: #D9852C;
}

.story-conclusion {
  font-size: 22px;
  color: #333;
  text-align: center;
  margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
  width: 100%;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-mission-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.vision-mission-block {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.vm-text-column {
  width: 100%;
}

.vm-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vm-vertical-bar {
  width: 6px;
  background-color: #D1D5D8;
  border-radius: 10px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
}

.vm-text-content {
  flex: 1;
}

.vm-heading {
  font-size: 30px;
  color: #0C2F32;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.vm-paragraph {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}

.vm-image-column {
  width: 100%;
}

.vm-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Features Grid Section */
.features-grid-section {
  width: 100%;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-grid-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.features-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #0C2F32;
  margin: 0 0 8px 0;
  text-align: center;
}

.features-subtitle {
  font-size: 18px;
  color: #555;
  margin: 8px 0 40px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #FFFDF9;
  border: 1px solid #E4DED7;
  border-radius: 14px;
  padding: 26px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.feature-icon {
  width: 52px;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

.feature-title {
  font-size: 19px;
  font-weight: 700;
  color: #0C2F32;
  line-height: 1.4;
  margin: 0 0 6px 0;
  text-align: center;
}

.feature-description {
  font-size: 15.5px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
  text-align: center;
}

@media (max-width: 768px) {
  .site-header {
    padding: 24px;
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    flex: 0 1 60%;
    min-width: 0;
  }

  .cta-btn {
    padding: 10px 16px;
    border-radius: 24px;
    flex: 0 1 40%;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    min-width: fit-content;
  }

  .hero {
    min-height: auto;
    padding: 100px 24px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-content {
    margin: 20px auto 0;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtext {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .ribbon {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    transform: translateY(0);
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    margin-bottom: 0;
    margin-top: 24px;
    gap: 12px;
    border-radius: 16px;
  }

  .chatbot-image {
    margin: 0 auto;
    max-width: 120px;
  }

  .ribbon-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
  }

  .awards-section {
    padding: 60px 24px;
  }

  .awards-small-heading {
    font-size: 16px;
  }

  .awards-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .award-pill {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 32px 20px;
    gap: 24px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .award-badge-wrapper {
    order: -1;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .award-badge {
    height: 110px;
    width: auto;
    margin: 0;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 0 2px rgba(255, 255, 255, 0.8));
  }

  .award-text-left,
  .award-text-right {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .award-text-left {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .award-text-right {
    padding-top: 20px;
  }

  .award-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }

  .award-subtext {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
  }

  .awards-description {
    width: 90%;
    font-size: 17px;
    margin-bottom: 24px;
  }

  .awards-cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .content-section {
    padding: 60px 24px;
  }

  .content-block {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
  }

  .content-text {
    width: 100%;
    text-align: center;
    height: auto;
  }

  .content-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
  }

  .content-subheading {
    text-align: center;
    margin-bottom: 16px;
  }

  .content-paragraph {
    text-align: center;
    margin-bottom: 16px;
  }

  .content-subheading {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .content-paragraph {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .content-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .block-1 .content-image,
  .block-2 .content-image {
    width: 100%;
    height: 300px;
    max-width: 100%;
    max-height: 300px;
    flex: none;
  }

  .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .block-1 .content-image {
    order: 2;
  }

  .block-1 .content-text {
    order: 1;
  }

  .block-2 .content-image {
    order: 1;
  }

  .block-2 .content-text {
    order: 2;
  }

  .block-2 {
    flex-direction: column;
  }

  .features-section {
    padding: 32px 24px;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .icon-card {
    padding: 18px;
    min-height: auto;
  }

  .banner-card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .who-is-it-for {
    grid-template-columns: 1fr;
  }

  .banner-image-wrapper {
    order: -1;
    border-radius: 14px;
    min-height: 200px;
    max-height: 250px;
  }

  .banner-image-right,
  .banner-image-left {
    border-radius: 14px;
  }

  /* Mobile: remove the slant so the image stays clean in stacked layout */
  .how-it-works .banner-image-right {
    clip-path: none;
    border-radius: 14px;
  }

  .how-it-works .banner-image-right::before {
    display: none;
  }

  .who-is-it-for .banner-image-left::before {
    display: none;
  }

  .how-it-works .banner-text,
  .who-is-it-for .banner-text {
    padding: 0;
  }

  .banner-heading {
    font-size: 24px;
  }

  .banner-body {
    font-size: 15px;
  }

  .testimonials-section {
    padding: 60px 24px;
  }

  .testimonials-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .testimonials-slider-wrapper {
    margin-bottom: 40px;
  }

  .testimonials-slider {
    gap: 24px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .testimonial-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .testimonials-cta {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .cta-btn-orange,
  .cta-btn-teal {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .story-section {
    padding: 60px 24px;
  }

  .story-container {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .story-heading {
    font-size: 28px;
  }

  .story-subheading {
    font-size: 17px;
  }

  .story-grey-box {
    padding: 28px 24px;
    margin: 32px auto;
  }

  .story-question {
    font-size: 20px;
  }

  .story-body {
    font-size: 15px;
  }

  .story-green-box {
    padding: 28px 24px;
    margin: 32px auto;
    text-align: left;
  }

  .story-vision-title {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
  }

  .story-checklist li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .story-built-text {
    font-size: 17px;
    margin: 32px 0 20px;
  }

  .story-image-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-image-card img {
    height: 160px;
  }

  .story-card-text {
    padding: 14px 18px 18px;
    font-size: 15px;
  }

  .story-emphasis {
    font-size: 22px;
    margin: 32px 0 8px;
  }

  .story-conclusion {
    font-size: 16px;
  }

  .vision-mission-section {
    padding: 60px 24px;
  }

  .vision-mission-container {
    gap: 40px;
  }

  .vision-mission-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-image-column {
    order: 2;
  }

  .vm-text-column {
    order: 1;
  }

  .vm-vertical-bar {
    width: 4px;
  }

  .vm-heading {
    font-size: 24px;
  }

  .vm-paragraph {
    font-size: 16px;
  }

  .features-grid-section {
    padding: 60px 24px;
  }

  .features-main-title {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 16px;
    margin: 8px 0 32px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
    min-height: auto;
  }

  .feature-icon {
    width: 40px;
    margin-bottom: 12px;
  }

  .feature-title {
    font-size: 17px;
  }

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

  .quirri-timeline-section {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .timeline-heading {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .quirri-timeline-section .desktop-view {
    display: none !important;
  }

  .quirri-timeline-section .mobile-view {
    display: block !important;
  }

  .how-works-section {
    padding: 60px 20px;
  }

  .how-works-container {
    max-width: 100%;
    padding: 0;
  }

  .how-works-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 0;
  }

  .workflow-step {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }

  .workflow-step:not(:last-child) {
    border-bottom: 2px solid #D0D0D0 !important;
    padding-bottom: 30px !important;
  }

  .workflow-arrow-horizontal {
    display: block !important;
    transform: rotate(90deg) !important;
    margin: 10px 0 !important;
  }

  .workflow-step:not(:last-child) {
    padding-bottom: 40px !important;
  }

  .workflow-arrow-down {
    display: block !important;
    bottom: -45px !important;
  }

  .workflow-step {
    padding: 20px !important;
    min-height: auto !important;
    width: 100% !important;
    aspect-ratio: auto !important;
    flex: none !important;
    border: 2px solid #D0D0D0 !important;
    margin-bottom: 0 !important;
    background: #F6F6F6 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06) !important;
    position: relative;
  }

  .workflow-step:last-child {
    margin-bottom: 0 !important;
  }

  .workflow-step-last {
    padding-bottom: 20px;
  }

  .workflow-icon {
    width: 60px;
  }

  .workflow-step-title {
    font-size: 18px;
  }

  .workflow-step-desc {
    font-size: 15px;
  }

  .workflow-result-box {
    display: flex !important;
    flex-direction: column !important;
    padding: 30px 15px !important;
    margin-top: 50px !important;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    grid-template-columns: none !important;
  }

  .result-icon {
    order: -1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 100px;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 20px;
  }

  .result-image {
    width: 140px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
  }

  .result-text {
    order: 1 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
    margin: 0 auto;
  }

  .result-title {
    text-align: center !important;
    font-size: 18px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto 12px auto !important;
    width: 100%;
    display: block;
  }

  .result-description {
    text-align: center !important;
    font-size: 14px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5 !important;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto !important;
    width: 100%;
    display: block;
  }
}

/* How Quirri AI Works Section */
.how-works-section {
  width: 100%;
  padding: 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-works-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.how-works-title {
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin: 0 0 60px 0;
  text-align: center;
}

.how-works-title span {
  color: #0C2F32;
}

.workflow-top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  width: 100%;
}

.workflow-step {
  background: #F6F6F6;
  border-radius: 16px;
  padding: 0;
  flex: 1 1 0;
  width: 0;
  aspect-ratio: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  box-sizing: border-box;
  position: relative;
}

.workflow-icon {
  width: 75px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.workflow-step-title {
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px 0;
  text-align: center;
}

.workflow-step-desc {
  font-size: 15.5px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.workflow-arrow {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  display: block;
  margin: 0;
  position: relative;
  z-index: 5;
}

.workflow-arrow-horizontal {
  transform: rotate(0deg);
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.workflow-step-last {
  position: relative;
  padding-bottom: 80px;
}

.workflow-arrow-down {
  display: block;
  width: 40px;
  height: auto;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.workflow-result-box {
  background: #F2F2F2;
  border-radius: 16px;
  min-height: 230px;
  padding: 40px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  column-gap: 20px;
  box-sizing: border-box;
}

.result-text {
  text-align: left;
}

.result-title {
  font-size: 21px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
}

.result-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.result-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.result-image {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 700px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Timeline Section */
.quirri-timeline-section {
  width: 100%;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)),
    url("assets/images/businessman-working-futuristic-office.webp");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #fff;
}

.timeline-container-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.timeline-heading {
  font-weight: 400;
  margin-bottom: 80px;
  font-size: 42px;
  color: #fff;
}

.timeline-heading span {
  color: #D9852C;
  font-weight: 700;
}

/* Desktop Curve Visualization */
.desktop-view {
  display: block;
}

.svg-container {
  width: 100%;
  height: 400px;
}

#curve-path {
  stroke: rgba(111, 133, 138, 0.4);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  animation: drawCurve 3s ease-in-out 0.3s forwards;
}

@keyframes drawCurve {
  from {
    stroke-dashoffset: 2000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.curve-dot {
  fill: #D9852C;
  filter: drop-shadow(0 0 12px rgba(217, 133, 44, 0.7));
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.connector-line {
  stroke: #D9852C;
  stroke-width: 4.5;
  stroke-dasharray: 3 3;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.connector-arrow {
  fill: #D9852C;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.feature-text {
  fill: #ccc;
  font-size: 15px;
  text-anchor: middle;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.feature-text tspan {
  dominant-baseline: hanging;
}

/* Desktop: Increase feature text font size */
@media (min-width: 1025px) {
  .feature-text {
    font-size: 28px;
  }
}

.active .curve-dot { 
  transform: scale(1); 
}

.active .connector-line { 
  opacity: 0.7; 
}

.active .connector-arrow { 
  opacity: 0.7; 
}

.active .feature-text { 
  opacity: 1; 
}

/* Mobile Vertical Timeline */
.mobile-view {
  display: none;
}

.timeline-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* Vertical line */
.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(111, 133, 138, 0.2) 0%, 
    rgba(111, 133, 138, 0.6) 50%, 
    rgba(111, 133, 138, 0.2) 100%);
  animation: lineGrow 2s ease-out forwards;
}

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { 
  animation-delay: 0.3s; 
}

.timeline-item:nth-child(2) { 
  animation-delay: 0.5s; 
}

.timeline-item:nth-child(3) { 
  animation-delay: 0.7s; 
}

.timeline-item:nth-child(4) { 
  animation-delay: 0.9s; 
}

.timeline-item:nth-child(5) { 
  animation-delay: 1.1s; 
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-dot {
  position: absolute;
  left: 22px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #D9852C;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(10, 12, 16, 0.8), 0 0 15px rgba(217, 133, 44, 0.7);
  z-index: 2;
  transform: scale(0);
  animation: dotPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.timeline-item:nth-child(1) .timeline-dot { 
  animation-delay: 0.4s; 
}

.timeline-item:nth-child(2) .timeline-dot { 
  animation-delay: 0.6s; 
}

.timeline-item:nth-child(3) .timeline-dot { 
  animation-delay: 0.8s; 
}

.timeline-item:nth-child(4) .timeline-dot { 
  animation-delay: 1s; 
}

.timeline-item:nth-child(5) .timeline-dot { 
  animation-delay: 1.2s; 
}

@keyframes dotPop {
  to {
    transform: scale(1);
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #D9852C;
  text-align: left;
}

.timeline-content p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* Desktop: Increase timeline content font size */
@media (min-width: 1025px) {
  .timeline-content p {
    font-size: 24px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .timeline-heading {
    font-size: 32px;
    margin-bottom: 60px;
  }
  
  .svg-container {
    height: 350px;
  }
  
  .feature-text {
    font-size: 13px;
  }
}

/* Mobile: Switch to vertical timeline */
@media (max-width: 768px) {
  .quirri-timeline-section .timeline-heading {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .quirri-timeline-section .desktop-view {
    display: none;
  }

  .quirri-timeline-section .mobile-view {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .how-works-section {
    padding: 60px 40px;
  }

  .workflow-steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .workflow-arrow-horizontal {
    display: none;
  }

  .workflow-arrow-down {
    display: none;
  }

  .workflow-step {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
  }
}

@media (min-width: 769px) and (max-width: 1099px) {
  .features-section {
    padding: 48px 50px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .banner-card {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .who-is-it-for {
    grid-template-columns: 1fr;
  }

  .banner-image-wrapper {
    order: -1;
    border-radius: 14px;
  }

  .banner-image-right,
  .banner-image-left {
    border-radius: 14px;
  }

  .how-it-works .banner-text,
  .who-is-it-for .banner-text {
    padding: 0;
  }

  .testimonials-section {
    padding: 60px 50px;
  }

  .vision-mission-section {
    padding: 60px 50px;
  }

  .vision-mission-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-image-column {
    order: 2;
  }

  .vm-text-column {
    order: 1;
  }

  .vm-vertical-bar {
    width: 4px;
  }

  .vm-heading {
    font-size: 24px;
  }
}

@media (max-width: 899px) {
  .vision-mission-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-image-column {
    order: 2;
  }

  .vm-text-column {
    order: 1;
  }

  .vm-vertical-bar {
    width: 4px;
  }

  .vm-heading {
    font-size: 24px;
  }
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  padding: 50px 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  margin: 0 0 60px 0;
  text-align: center;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  overflow: visible;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  padding-bottom: 60px;
  width: 48%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  margin-bottom: 30px;
}

.card-title {
  font-size: 29px;
  font-weight: 700;
  color: #163A3C;
  margin: 0 0 20px 0;
}

.card-text {
  font-size: 19px;
  line-height: 1.5;
  color: #333;
  max-width: 420px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}

.pricing-button {
  background: #E66826;
  color: white;
  font-size: 20px;
  padding: 14px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.25s ease;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.pricing-button:hover {
  background: #c7571f;
}

/* Pricing Section Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-card {
    width: 80%;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 24px 80px;
  }

  .pricing-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-card {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 40px;
  }

  .pricing-button {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 260px;
    text-align: center;
    margin-top: 0;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 50px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: flex-start;
}

/* Contact Form Styles */
.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  width: 100%;
}

.form-field {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  height: 60px;
  background: white;
  border: 2px solid #173F45;
  border-radius: 12px;
  font-size: 18px;
  padding-left: 16px;
  box-sizing: border-box;
}

.form-textarea {
  height: 120px;
  padding: 16px;
  resize: vertical;
}

.contact-submit-btn {
  background: #E66826;
  color: white;
  font-size: 22px;
  padding: 14px 40px;
  border-radius: 40px;
  display: block;
  margin: 30px auto 0 auto;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
  font-weight: 600;
}

.contact-submit-btn:hover {
  background: #c7571f;
}

/* Contact Info Card Styles */
.contact-info-card {
  background: linear-gradient(to bottom right, #0C2A30, #07363D);
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  display: block;
}

.location-icon {
  color: #ff4444;
}

.email-icon {
  color: #4CAF50;
}

.phone-icon {
  color: #ff69b4;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-top: 8px;
  margin-bottom: 8px;
}

.contact-info-text {
  line-height: 1.5;
  font-size: 16px;
  color: #E6E6E6;
  margin: 0;
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 20px 0;
}

/* Contact Section Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card {
    padding: 30px 20px;
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }

  .form-input,
  .form-textarea {
    width: 100%;
  }

  .contact-submit-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   CTA ACTION SECTION
   ============================================ */

.cta-action-section {
  padding-top: 50px;
  padding-bottom: 30px;
  background: white;
}

.cta-action-wrapper {
  width: 100%;
}

.cta-action-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(to bottom, #F0F0F0, white);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0px -40px 60px -20px rgba(0,0,0,0.12);
}

.cta-action-heading {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 50px;
}

.quirri-highlight {
  color: #0C2F32;
}

.cta-button-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-action-btn {
  border-radius: 40px;
  font-size: 22px;
  padding: 18px 34px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  font-weight: 400;
  transition: background-color 0.25s ease;
}

/* Desktop: Reduce button padding */
@media (min-width: 1025px) {
  .cta-action-btn {
    padding: 12px 24px;
  }
}

.cta-btn-orange {
  background: #E66826;
}

.cta-btn-orange:hover {
  background: #c7571f;
}

.cta-btn-teal {
  background: #0C2F32;
  max-width: 600px;
}

.cta-btn-teal:hover {
  background: #0a2427;
}

/* CTA Action Section Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-action-container {
    padding: 40px;
  }

  .cta-action-btn {
    padding: 16px 30px;
  }
}

@media (max-width: 768px) {
  .cta-action-section {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .cta-action-container {
    padding: 40px 20px;
  }

  .cta-action-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .cta-button-row {
    gap: 16px;
  }

  .cta-action-btn {
    width: 100%;
    max-width: 90%;
    text-align: center;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 50px 0;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.faq-heading {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  text-align: center;
}

.faq-highlight {
  color: #E66826;
}

.faq-list {
  width: 100%;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-question {
  background: white;
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-number {
  color: #E66826;
  font-size: 22px;
  font-weight: 700;
  margin-right: 12px;
}

.faq-text {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-align: left;
}

.faq-arrow {
  font-size: 24px;
  color: #E66826;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  display: inline-block;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  background: #0C2A30;
  width: 100%;
  border-radius: 0 0 16px 16px;
  padding: 0 30px;
  margin-top: -10px;
  color: white;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

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

.faq-answer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.faq-answer-icon {
  font-size: 32px;
  color: #053842;
  font-weight: 700;
  padding: 8px;
  background: none;
  flex-shrink: 0;
}

.faq-answer-text {
  font-size: 18px;
  color: #E6E6E6;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  flex: 1;
}

/* FAQ Section Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-heading {
    font-size: 36px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer {
    padding: 22px 24px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-container {
    padding: 0;
  }

  .faq-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 18px;
    flex-wrap: wrap;
  }

  .faq-text {
    font-size: 18px;
  }

  .faq-number {
    font-size: 20px;
    margin-right: 10px;
  }

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

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

  .faq-answer-icon {
    font-size: 28px;
  }
}
