* {
        font-family: Roboto, sans-serif;
        box-sizing: border-box;
    }
    
    .hero-section {
  position: relative;
  background-color: #214e73;
  padding: 96px 24px;
  overflow: hidden;
  min-height: 800px;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  z-index: 1;
}

.hero-section::before {
  width: 70px;
  height: 70px;
  top: 20px;
  left: 50px;
  background-color: #cdcdc1;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  width: 60px;
  height: 60px;
  top: 30px;
  right: 50px;
  background-color: #cdcdc1;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pre-headline {
  color: #cdcdc1;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-all;
}

.main-headline {
  color: #cdcdc1;
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-all;
}

.subheadline {
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: #f7f8f9;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-all;
}

.content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.content-text {
  flex: 1;
  max-width: 700px;
}

.hero-paragraph {
  color: #f7f8f9;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
  word-break: break-all;
}

.hero-paragraph-bold {
  font-weight: 600;
}

.hero-image-container {
  flex: 0 0 400px;
  margin-left: 24px;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  max-height: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-8px);
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border: 2px dashed #cdcdc1;
  border-radius: 10px;
  margin: 48px auto;
  max-width: 900px;
}

.benefit-item {
  flex: 1;
  text-align: center;
  color: #f7f8f9;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  padding: 0 16px;
  position: relative;
}

.benefit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background-color: #cdcdc1;
  opacity: 0.5;
}

.divider {
  height: 2px;
  background-color: #cdcdc1;
  opacity: 0.3;
  max-width: 900px;
  margin: 0 auto 48px;
}

.cta-container {
  text-align: center;
  margin-top: 48px;
}

.cta-button {
  background-color: #cdcdc1;
  color: #214e73;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  padding: 18px 32px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #ecaa58;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.risk-reversal {
  font-size: 16px;
  line-height: 18px;
  color: #f7f8f9;
  margin-bottom: 8px;
}

.urgency-text {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #cdcdc1;
}

.decorative-circle {
  position: absolute;
  background-color: #cdcdc1;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.decorative-circle-3 {
  width: 35px;
  height: 35px;
  bottom: 300px;
  right: 60px;
  animation: float 12s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 1279px) {
  .hero-section {
    padding: 64px 24px;
    min-height: 700px;
  }
  
  .hero-section::before {
    width: 60px;
    height: 60px;
    left: 40px;
  }
  
  .hero-section::after {
    width: 50px;
    height: 50px;
    right: 40px;
  }
  
  .pre-headline {
    font-size: 16px;
    line-height: 18px;
    max-width: 800px;
  }
  
  .main-headline {
    font-size: 38px;
    line-height: 44px;
    max-width: 800px;
  }
  
  .subheadline {
    font-size: 20px;
    line-height: 26px;
    max-width: 800px;
  }
  
  .content-container {
    flex-direction: row;
  }
  
  .hero-paragraph {
    font-size: 16px;
    line-height: 22px;
  }
  
  .hero-image-container {
    flex: 0 0 300px;
  }
  
  .hero-image {
    max-width: 300px;
    max-height: 200px;
  }
  
  .benefits-container {
    max-width: 800px;
  }
  
  .benefit-item {
    font-size: 16px;
    line-height: 18px;
  }
  
  .divider {
    max-width: 800px;
  }
  
  .cta-button {
    font-size: 20px;
    padding: 16px 28px;
  }
  
  .decorative-circle-3 {
    width: 30px;
    height: 30px;
    right: 50px;
  }
}

@media (max-width: 1023px) {
  .hero-section {
    padding: 48px 16px;
    min-height: 900px;
  }
  
  .hero-section::before {
    width: 50px;
    height: 50px;
    left: 30px;
  }
  
  .hero-section::after {
    width: 40px;
    height: 40px;
    right: 30px;
  }
  
  .pre-headline {
    font-size: 16px;
    line-height: 18px;
    max-width: 580px;
  }
  
  .main-headline {
    font-size: 32px;
    line-height: 38px;
    max-width: 580px;
  }
  
  .subheadline {
    font-size: 18px;
    line-height: 24px;
    max-width: 580px;
  }
  
  .content-container {
    flex-direction: column;
  }
  
  .content-text {
    max-width: 100%;
    margin-bottom: 24px;
  }
  
  .hero-paragraph {
    font-size: 16px;
    line-height: 22px;
    max-width: 580px;
  }
  
  .hero-image-container {
    margin-left: 0;
    align-self: center;
  }
  
  .hero-image {
    max-width: 260px;
    max-height: 180px;
  }
  
  .benefits-container {
    max-width: 580px;
    padding: 16px;
  }
  
  .benefit-item {
    font-size: 16px;
    line-height: 18px;
    padding: 0 8px;
  }
  
  .divider {
    max-width: 580px;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 14px 24px;
    max-width: 300px;
    width: 100%;
  }
  
  .risk-reversal, .urgency-text {
    font-size: 14px;
    line-height: 16px;
  }
  
  .decorative-circle-3 {
    width: 25px;
    height: 25px;
    bottom: 200px;
    right: 40px;
  }
}

@media (max-width: 639px) {
  .hero-section {
    padding: 48px 16px;
    min-height: 1100px;
  }
  
  .hero-section::before {
    width: 40px;
    height: 40px;
    left: 20px;
  }
  
  .hero-section::after {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  
  .pre-headline {
    font-size: 14px;
    line-height: 16px;
    max-width: 280px;
  }
  
  .main-headline {
    font-size: 24px;
    line-height: 30px;
    max-width: 280px;
  }
  
  .subheadline {
    font-size: 16px;
    line-height: 22px;
    max-width: 280px;
  }
  
  .content-container {
    flex-direction: column;
  }
  
  .content-text {
    max-width: 100%;
  }
  
  .hero-paragraph {
    font-size: 16px;
    line-height: 22px;
    max-width: 280px;
  }
  
  .hero-image-container {
    margin-top: 24px;
  }
  
  .hero-image {
    max-width: 260px;
    max-height: 180px;
  }
  
  .benefits-container {
    max-width: 280px;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
  
  .benefit-item {
    font-size: 14px;
    line-height: 16px;
    width: 100%;
  }
  
  .benefit-item:not(:last-child)::after {
    display: none;
  }
  
  .divider {
    max-width: 260px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 14px 24px;
    max-width: 260px;
  }
  
  .decorative-circle-3 {
    width: 20px;
    height: 20px;
    bottom: 150px;
    right: 30px;
  }
}
/* Expert Interview Engine Section Styles */
.expert-interview-section {
  padding: 96px 24px;
  background-color: #f7f8f9;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
  overflow: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #cdcdc1;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.section-premise {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.section-problem {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.solution-statement {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.process-intro {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #cdcdc1;
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-description {
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.result-statement {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.visual-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.visual-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.15);
  transition: transform 0.3s ease;
}

.visual-image:hover {
  transform: scale(1.05);
}

.cta-container {
  text-align: center;
  margin-top: 48px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #cdcdc1;
  color: #214e73;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 260px;
  min-height: 60px;
}

.cta-button:hover {
  background-color: #ecaa58;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(236, 170, 88, 0.2);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1279px) {
  .section-title {
    font-size: 36px;
    max-width: 800px;
  }
  
  .section-intro,
  .section-premise,
  .section-problem {
    font-size: 16px;
    max-width: 800px;
  }
  
  .solution-statement {
    font-size: 18px;
  }
  
  .process-intro {
    font-size: 22px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 15px;
  }
  
  .visual-image {
    width: 140px;
    height: 140px;
  }
  
  .cta-button {
    font-size: 18px;
    min-width: 240px;
  }
}

@media (max-width: 1023px) {
  .section-title {
    font-size: 32px;
    max-width: 580px;
  }
  
  .section-intro,
  .section-premise,
  .section-problem {
    font-size: 16px;
    max-width: 580px;
  }
  
  .solution-statement {
    font-size: 18px;
    max-width: 580px;
  }
  
  .process-intro {
    font-size: 20px;
    max-width: 580px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .visual-image {
    width: 120px;
    height: 120px;
  }
  
  .visual-elements {
    max-width: 580px;
  }
  
  .result-statement {
    font-size: 18px;
    max-width: 580px;
  }
  
  .cta-button {
    min-width: 220px;
    min-height: 55px;
  }
}

@media (max-width: 639px) {
  .expert-interview-section {
    padding: 64px 16px;
  }
  
  .section-title {
    font-size: 28px;
    max-width: 280px;
  }
  
  .section-intro,
  .section-premise,
  .section-problem {
    font-size: 16px;
    max-width: 280px;
    line-height: 1.5;
  }
  
  .solution-statement {
    font-size: 16px;
    max-width: 280px;
  }
  
  .process-intro {
    font-size: 18px;
    max-width: 280px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-card {
    padding: 16px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  .visual-elements {
    flex-direction: row;
    justify-content: space-around;
    max-width: 280px;
  }
  
  .visual-image {
    width: 100px;
    height: 100px;
  }
  
  .result-statement {
    font-size: 16px;
    max-width: 280px;
  }
  
  .cta-button {
    font-size: 16px;
    min-width: 200px;
    min-height: 50px;
    padding: 12px 24px;
  }
}
/* The Problem Section Styles */
.problem-section {
  background-color: #f7f8f9;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.problem-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-section__headline {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #cdcdc1;
  margin-bottom: 32px;
  max-width: 900px;
}

.problem-section__intro {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 48px;
  max-width: 900px;
}

.problem-section__quotes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 48px;
  background-color: rgba(33, 78, 115, 0.05);
  padding: 24px;
  border-radius: 8px;
}

.problem-section__quote {
  flex: 1 1 400px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  padding-left: 24px;
}

.problem-section__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #214e73;
}

.problem-section__uncomfortable-truth {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  max-width: 900px;
}

.problem-section__due-diligence {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.problem-section__real-challenge {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: #cdcdc1;
  margin-bottom: 48px;
  max-width: 900px;
}

.problem-section__knowledge-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  max-width: 900px;
}

.problem-section__expertise-intro {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.problem-section__points-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 48px;
  background-color: rgba(33, 78, 115, 0.05);
  padding: 24px;
  border-radius: 8px;
}

.problem-section__points {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.4;
}

.problem-section__trapped-knowledge {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.problem-section__issues-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 48px;
  background-color: rgba(33, 78, 115, 0.05);
  padding: 24px;
  border-radius: 8px;
}

.problem-section__issues {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.4;
}

.problem-section__traditional-approach {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.problem-section__competitor-warning {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: #cdcdc1;
  max-width: 900px;
  margin-bottom: 32px;
}

.problem-section__warning-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.problem-section__warning-icon {
  max-width: 120px;
  max-height: 120px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 1279px) {
  .problem-section__headline {
    font-size: 36px;
    max-width: 800px;
  }
  
  .problem-section__quote,
  .problem-section__points,
  .problem-section__issues {
    flex: 1 1 350px;
  }
}

@media (max-width: 1023px) {
  .problem-section {
    padding: 48px 24px;
  }
  
  .problem-section__headline {
    font-size: 32px;
    max-width: 580px;
  }
  
  .problem-section__intro,
  .problem-section__uncomfortable-truth,
  .problem-section__due-diligence,
  .problem-section__real-challenge,
  .problem-section__expertise-intro,
  .problem-section__trapped-knowledge,
  .problem-section__traditional-approach,
  .problem-section__competitor-warning {
    font-size: 17px;
    max-width: 580px;
  }
  
  .problem-section__knowledge-title {
    font-size: 20px;
    max-width: 580px;
  }
  
  .problem-section__quote,
  .problem-section__points,
  .problem-section__issues {
    flex: 1 1 250px;
  }
}

@media (max-width: 639px) {
  .problem-section {
    padding: 32px 16px;
  }
  
  .problem-section__headline {
    font-size: 28px;
    max-width: 270px;
  }
  
  .problem-section__intro,
  .problem-section__uncomfortable-truth,
  .problem-section__due-diligence,
  .problem-section__real-challenge,
  .problem-section__expertise-intro,
  .problem-section__trapped-knowledge,
  .problem-section__traditional-approach,
  .problem-section__competitor-warning {
    font-size: 16px;
    max-width: 270px;
  }
  
  .problem-section__knowledge-title {
    font-size: 18px;
    max-width: 270px;
  }
  
  .problem-section__quotes-container,
  .problem-section__points-container,
  .problem-section__issues-container {
    flex-direction: column;
  }
  
  .problem-section__warning-icon {
    max-width: 80px;
    max-height: 80px;
  }
}
.enterprise-reality-section {
  padding: 64px 16px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
  background-color: #f7f8f9;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #214e73;
}

.section-subtitle {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.divider {
  height: 2px;
  width: 80px;
  background-color: #cdcdc1;
  margin: 0 auto;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.enterprise-card {
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enterprise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #cdcdc1;
}

.card-description {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-feature {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(33, 78, 115, 0.1);
  border-radius: 50%;
  margin-right: 16px;
}

.card-icon i {
  font-size: 32px;
  color: #214e73;
}

.card-feature-text {
  font-size: 18px;
  font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 16px;
    max-width: 600px;
  }
  
  .card-title {
    font-size: 22px;
  }
}

@media (max-width: 639px) {
  .enterprise-reality-section {
    padding: 48px 16px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
    max-width: 100%;
  }
  
  .enterprise-card {
    padding: 24px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .card-icon i {
    font-size: 24px;
  }
  
  .card-feature-text {
    font-size: 16px;
  }
}
/* Solution Section Styles */
.solution-section {
  padding: 96px 24px;
  background-color: #f7f8f9;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
  max-width: 900px;
}

.key-statement {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.explanation-text {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 48px;
  max-width: 900px;
}

.solution-statement {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 48px;
  max-width: 900px;
}

.realities-container {
  width: 100%;
  max-width: 900px;
  margin-bottom: 64px;
}

.realities-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

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

.reality-item {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reality-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.approach-heading {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
}

.approach-container {
  width: 100%;
  max-width: 900px;
}

.approach-item {
  margin-bottom: 32px;
  padding: 32px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.approach-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #cdcdc1;
}

.approach-description {
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1279px) {
  .section-headline {
    font-size: 40px;
    max-width: 800px;
  }
  
  .intro-text,
  .explanation-text {
    max-width: 800px;
  }
  
  .key-statement,
  .solution-statement {
    font-size: 22px;
    max-width: 800px;
  }
  
  .realities-container,
  .approach-container {
    max-width: 800px;
  }
}

@media (max-width: 1023px) {
  .section-headline {
    font-size: 36px;
    max-width: 580px;
  }
  
  .intro-text,
  .explanation-text {
    font-size: 17px;
    max-width: 580px;
  }
  
  .key-statement,
  .solution-statement {
    font-size: 20px;
    max-width: 580px;
  }
  
  .realities-container,
  .approach-container {
    max-width: 580px;
  }
  
  .approach-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .solution-section {
    padding: 64px 16px;
  }
  
  .realities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .section-headline {
    font-size: 32px;
    max-width: 100%;
  }
  
  .intro-text,
  .explanation-text {
    font-size: 16px;
    max-width: 100%;
  }
  
  .key-statement,
  .solution-statement {
    font-size: 18px;
    max-width: 100%;
  }
  
  .realities-heading {
    font-size: 17px;
  }
  
  .approach-heading {
    font-size: 18px;
  }
  
  .approach-item {
    padding: 24px;
  }
  
  .approach-title {
    font-size: 17px;
  }
  
  .approach-description {
    font-size: 15px;
  }
}
.expert-interview-section {
  font-family: 'Roboto', sans-serif;
  padding: 64px 16px;
  background-color: #f7f8f9;
  color: #214e73;
  overflow: hidden;
}

.expert-interview-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-headline {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #214e73;
}

.section-intro {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.component-card {
  background-color: #fff;
  border: 2px solid #cdcdc1;
  border-radius: 10px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(33, 78, 115, 0.1);
}

.component-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #cdcdc1;
}

.component-intro {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.component-subtitle {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin: 24px 0 16px;
}

.component-list {
  padding-left: 20px;
  margin-bottom: 24px;
}

.component-list li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.component-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 24px 0;
}

.decorative-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid #ecaa58;
  box-shadow: 0 5px 15px rgba(33, 78, 115, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive styles */
@media (max-width: 1279px) {
  .section-headline {
    font-size: 36px;
  }
  
  .section-intro {
    font-size: 18px;
    max-width: 800px;
  }
  
  .component-title {
    font-size: 20px;
  }
  
  .decorative-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1023px) {
  .components-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .component-card {
    max-width: 580px;
    margin: 0 auto;
  }
  
  .section-headline {
    font-size: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .decorative-image {
    width: 120px;
    height: 120px;
    margin-top: 32px;
  }
}

@media (max-width: 639px) {
  .expert-interview-section {
    padding: 48px 16px;
  }
  
  .section-headline {
    font-size: 28px;
    max-width: 280px;
  }
  
  .section-intro {
    font-size: 16px;
    max-width: 280px;
  }
  
  .component-card {
    padding: 24px 16px;
    max-width: 280px;
  }
  
  .component-title {
    font-size: 18px;
  }
  
  .component-intro,
  .component-list li,
  .component-text {
    font-size: 14px;
  }
  
  .component-subtitle {
    font-size: 16px;
  }
  
  .decorative-image {
    width: 100px;
    height: 100px;
  }
}
/* Science Behind Expertise Section Styles */
.science-section {
  padding: 96px 24px;
  background-color: #f7f8f9;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
}

.science-container {
  max-width: 1200px;
  margin: 0 auto;
}

.science-header {
  text-align: center;
  margin-bottom: 48px;
}

.science-title {
  color: #cdcdc1;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.science-intro {
  font-size: 18px;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.science-card {
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.science-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(33, 78, 115, 0.12);
}

.science-card-title {
  color: #cdcdc1;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}

.science-card-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.science-small-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.science-small-card {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.science-small-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(33, 78, 115, 0.12);
}

.science-small-card-title {
  color: #cdcdc1;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}

.science-small-card-text {
  font-size: 16px;
  line-height: 1.6;
}

/* Decorative elements */
.science-decorative {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ecaa58 0%, rgba(236, 170, 88, 0.2) 100%);
  opacity: 0.15;
  z-index: 1;
}

.science-decorative-1 {
  left: 5%;
  bottom: 5%;
}

.science-decorative-2 {
  right: 5%;
  bottom: 5%;
}

/* Responsive styles */
@media (max-width: 1279px) {
  .science-title {
    font-size: 36px;
    max-width: 800px;
  }
  
  .science-grid {
    gap: 32px;
  }
  
  .science-decorative {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1023px) {
  .science-section {
    padding: 64px 24px;
  }
  
  .science-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .science-title {
    font-size: 32px;
    max-width: 580px;
  }
  
  .science-small-cards-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .science-decorative {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 639px) {
  .science-section {
    padding: 48px 16px;
  }
  
  .science-title {
    font-size: 28px;
    max-width: 280px;
  }
  
  .science-intro {
    font-size: 16px;
    max-width: 280px;
  }
  
  .science-card {
    padding: 24px;
  }
  
  .science-card-title {
    font-size: 20px;
  }
  
  .science-small-cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .science-small-card {
    padding: 20px;
  }
  
  .science-small-card-title {
    font-size: 20px;
  }
  
  .science-decorative {
    width: 100px;
    height: 100px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section {
  background-color: #f7f8f9;
  padding: 64px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.section__heading {
  color: #214e73;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  max-width: 800px;
}

.section__text {
  color: #214e73;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
}

.section__cta {
  background-color: #ecaa58;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section__cta:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section__heading {
    font-size: 48px;
  }
  
  .section__text {
    font-size: 24px;
  }
  
  .section__cta {
    font-size: 18px;
  }
}

.why-now-section {
  padding: 64px 24px;
  background-color: #f7f8f9;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
}

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

.section-headline {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #cdcdc1;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.challenges-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.challenge-item {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.challenge-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #214e73;
  display: flex;
  align-items: center;
}

.challenge-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background-color: #ecaa58;
  margin-right: 12px;
  border-radius: 2px;
}

.challenge-description {
  font-size: 16px;
  line-height: 1.5;
}

.highlight-statement {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  color: #cdcdc1;
  margin: 48px auto;
  max-width: 1000px;
  padding: 0 24px;
}

.reality-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 64px;
}

.reality-box {
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(33, 78, 115, 0.08);
}

.reality-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #214e73;
}

.reality-points {
  font-size: 16px;
  line-height: 1.5;
}

.reality-points li {
  margin-bottom: 12px;
}

.final-statement {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  color: #cdcdc1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1023px) {
  .section-headline {
    font-size: 32px;
    max-width: 580px;
  }
  
  .intro-text {
    max-width: 580px;
  }
  
  .challenges-container {
    max-width: 580px;
  }
  
  .reality-container {
    grid-template-columns: 1fr;
    max-width: 580px;
  }
  
  .highlight-statement {
    font-size: 20px;
    max-width: 580px;
  }
  
  .final-statement {
    font-size: 18px;
    max-width: 580px;
  }
}

@media (max-width: 639px) {
  .why-now-section {
    padding: 48px 16px;
  }
  
  .section-headline {
    font-size: 28px;
    max-width: 280px;
  }
  
  .intro-text {
    font-size: 16px;
    max-width: 280px;
  }
  
  .challenges-container {
    max-width: 280px;
    gap: 24px;
  }
  
  .challenge-item {
    padding: 20px;
  }
  
  .challenge-title {
    font-size: 16px;
  }
  
  .challenge-description {
    font-size: 14px;
  }
  
  .highlight-statement {
    font-size: 18px;
    max-width: 280px;
    margin: 32px auto;
  }
  
  .reality-container {
    max-width: 280px;
    gap: 24px;
  }
  
  .reality-box {
    padding: 24px;
  }
  
  .reality-title {
    font-size: 16px;
  }
  
  .reality-points {
    font-size: 14px;
  }
  
  .final-statement {
    font-size: 16px;
    max-width: 280px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.guarantee-section {
  padding: 96px 24px;
  background-color: #f7f8f9;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
}

.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-heading {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  max-width: 900px;
}

.guarantee-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 64px;
  max-width: 900px;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 64px;
}

.guarantee-card {
  background-color: white;
  border: 1px solid #cdcdc1;
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(33, 78, 115, 0.1);
  border-color: #ecaa58;
}

.guarantee-card-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #214e73;
}

.guarantee-card-description {
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
  flex-grow: 1;
}

.guarantee-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8f9;
  border-radius: 50%;
  margin-top: auto;
  color: #ecaa58;
  font-size: 24px;
}

.guarantee-disclaimer {
  font-size: 16px;
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
  color: #214e73;
  opacity: 0.8;
}

.guarantee-experience {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  color: #214e73;
}

@media (max-width: 1023px) {
  .guarantee-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantee-heading {
    font-size: 36px;
    max-width: 580px;
  }
  
  .guarantee-intro,
  .guarantee-disclaimer,
  .guarantee-experience {
    max-width: 580px;
    font-size: 15px;
  }
}

@media (max-width: 639px) {
  .guarantee-section {
    padding: 64px 16px;
  }
  
  .guarantee-cards {
    grid-template-columns: 1fr;
  }
  
  .guarantee-heading {
    font-size: 32px;
    max-width: 280px;
  }
  
  .guarantee-intro {
    font-size: 16px;
    max-width: 280px;
  }
  
  .guarantee-disclaimer,
  .guarantee-experience {
    max-width: 280px;
    font-size: 14px;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guarantee-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.guarantee-card:nth-child(1) {
  animation-delay: 0.2s;
}

.guarantee-card:nth-child(2) {
  animation-delay: 0.4s;
}

.guarantee-card:nth-child(3) {
  animation-delay: 0.6s;
}

.guarantee-card:nth-child(4) {
  animation-delay: 0.8s;
}
/* FAQ Section Styles */
.faq-section {
  background-color: #f7f8f9;
  padding: 64px 16px;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.faq-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecaa58;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #cdcdc1;
  margin: 0;
  line-height: 1.2;
}

.faq-divider {
  height: 2px;
  background-color: #cdcdc1;
  margin: 16px 0 48px;
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(33, 78, 115, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 78, 115, 0.12);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #cdcdc1;
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
  padding-right: 24px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: #ecaa58;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #214e73;
  word-break: break-word;
}

/* Responsive styles */
@media (max-width: 1279px) {
  .faq-title {
    font-size: 36px;
  }
  
  .faq-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 1023px) {
  .faq-title {
    font-size: 32px;
  }
  
  .faq-icon {
    width: 60px;
    height: 60px;
  }
  
  .faq-grid {
    gap: 24px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 17px;
  }
  
  .faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-header {
    margin-bottom: 32px;
  }
  
  .faq-divider {
    margin: 16px 0 32px;
  }
}

@media (max-width: 639px) {
  .faq-section {
    padding: 48px 16px;
  }
  
  .faq-title {
    font-size: 28px;
  }
  
  .faq-icon {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto 16px;
    top: auto;
    left: auto;
    transform: none;
  }
  
  .faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-answer {
    font-size: 14px;
  }
}
/* Final CTA Section Styles */
.final-cta-section {
  background-color: #f7f8f9;
  padding: 96px 24px;
  font-family: 'Roboto', sans-serif;
  color: #214e73;
  position: relative;
  overflow: hidden;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-headline {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #cdcdc1;
  margin: 0 auto 48px;
  max-width: 900px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-copy {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.paths-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}

.path {
  margin-bottom: 32px;
}

.path-label {
  font-size: 16px;
  font-weight: 700;
  color: #cdcdc1;
  margin-bottom: 8px;
}

.path-description {
  font-size: 16px;
  line-height: 1.6;
}

.choice-description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin-top: 16px;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-heading {
  font-size: 20px;
  font-weight: 700;
  color: #cdcdc1;
  margin-bottom: 16px;
}

.solution-benefits {
  font-size: 16px;
  line-height: 1.6;
}

.solution-benefits ul {
  padding-left: 24px;
  margin: 16px 0;
}

.solution-benefits li {
  margin-bottom: 16px;
}

.additional-benefits {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 32px;
}

.offer-details {
  border: 1px solid #cdcdc1;
  border-radius: 10px;
  padding: 24px;
  margin-top: 16px;
}

.offer-details p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.offer-details p:last-child {
  margin-bottom: 0;
}

.final-statement {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin: 48px auto 24px;
  max-width: 800px;
}

.final-cta-text {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #cdcdc1;
  margin-bottom: 32px;
}

.cta-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 24px;
  background-color: #cdcdc1;
  color: #214e73;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #ecaa58;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(205, 205, 193, 0.5);
}

.secondary-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin: 16px auto 0;
  max-width: 400px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive Styles */
@media (max-width: 1279px) {
  .section-headline {
    font-size: 36px;
    max-width: 800px;
  }
  
  .content-grid {
    gap: 32px;
  }
}

@media (max-width: 1023px) {
  .final-cta-section {
    padding: 64px 24px;
  }
  
  .section-headline {
    font-size: 32px;
    max-width: 580px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .right-column {
    margin-top: 16px;
  }
  
  .cta-button {
    max-width: 300px;
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  .final-cta-section {
    padding: 48px 16px;
  }
  
  .section-headline {
    font-size: 28px;
    max-width: 280px;
    margin-bottom: 32px;
  }
  
  .paths-heading,
  .solution-heading {
    font-size: 16px;
  }
  
  .intro-copy,
  .path-description,
  .choice-description,
  .solution-benefits,
  .additional-benefits,
  .offer-details p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .path-label {
    font-size: 14px;
  }
  
  .final-statement {
    font-size: 14px;
    margin: 32px auto 16px;
  }
  
  .final-cta-text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .cta-button {
    max-width: 260px;
    font-size: 16px;
    padding: 14px 20px;
  }
  
  .secondary-text {
    font-size: 12px;
    max-width: 260px;
  }
}
/* The Iron Dove Approach Section Styles */
.approach-section {
  padding: 96px 24px;
  background-color: #f7f8f9;
  position: relative;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.approach-headline {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #cdcdc1;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.approach-intro {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
  color: #214e73;
}

.approach-subtitle {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  color: #214e73;
}

.realities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.reality-item {
  padding: 16px;
  background-color: #f7f8f9;
  border-left: 3px solid #ecaa58;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reality-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.reality-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #214e73;
  word-break: break-all;
}

.icons-container {
  display: flex;
  justify-content: space-between;
  margin: 48px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

.approach-main-subtitle {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin: 48px 0 32px;
  color: #214e73;
}

.approach-boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.approach-box {
  border: 1px solid #cdcdc1;
  border-radius: 10px;
  padding: 24px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.approach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.approach-box-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #cdcdc1;
  margin-bottom: 16px;
}

.approach-box-description {
  font-size: 16px;
  line-height: 1.6;
  color: #214e73;
  word-break: break-all;
}

/* Responsive Styles */
@media (max-width: 1279px) {
  .approach-headline {
    font-size: 36px;
  }
  
  .approach-main-subtitle {
    font-size: 22px;
  }
  
  .icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1023px) {
  .approach-container {
    max-width: 900px;
  }
  
  .approach-headline {
    font-size: 32px;
  }
  
  .approach-intro,
  .approach-subtitle {
    max-width: 580px;
  }
  
  .icon {
    width: 70px;
    height: 70px;
  }
  
  .approach-main-subtitle {
    font-size: 20px;
    margin: 40px 0 24px;
  }
}

@media (max-width: 767px) {
  .approach-section {
    padding: 64px 16px;
  }
  
  .realities-grid,
  .approach-boxes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .icons-container {
    margin: 32px auto;
  }
}

@media (max-width: 639px) {
  .approach-headline {
    font-size: 28px;
  }
  
  .approach-intro,
  .approach-subtitle {
    font-size: 16px;
    max-width: 280px;
  }
  
  .reality-text {
    font-size: 14px;
  }
  
  .icon {
    width: 60px;
    height: 60px;
  }
  
  .approach-main-subtitle {
    font-size: 18px;
    margin: 32px 0 24px;
  }
  
  .approach-box-title {
    font-size: 16px;
  }
  
  .approach-box-description {
    font-size: 14px;
  }
}
    
    .close-icon, 
    .header__close-icon {
        display: block;
    }