* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: #f8f8f8;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #f8f8f8 0%, #e8f4f6 100%);
  padding-top: 140px;
  padding-left: 0px;
  padding-right: 0px;
}

.hero-content {
  display: flex;
  width: 100%;
  max-width: 1512px;
  margin: 0 0;
  gap: 0;
  align-items: center;
  position: relative;
}

/* Left side - Image */
.hero-left {
  flex: 1;
  position: relative;
  z-index: 2;
  min-height: 600px;
}

.large-beach-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  z-index: 1;
}

.large-beach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.small-photo-frame {
  position: absolute;
  bottom: 20px;
  left: 100px;
  width: 550px;
  z-index: 3;
  background: white;
  padding: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.small-photo-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Right side - Text box */
.hero-right {
  flex: 0 0 480px;
  background: linear-gradient(135deg, #5b9bad 0%, #4a8699 100%);
  padding: 70px 60px;
  margin-left: -80px;
  z-index: 4;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-right::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  right: 25px;
  bottom: 25px;
  background: #5391a4;
  z-index: -1;
}

.hero-right h1 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.hero-right .subheadline {
  font-family: "Carattere", cursive;
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 14px 60px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid #c8e8f0;
  transition: all 0.3s;
  margin-bottom: 25px;
}

.cta-button:hover {
  background: #c8e8f0;
  color: #4a8699;
}

.trust-line {
  font-size: 11px;
  color: #e8f4f6;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1.6;
}

/* Light blue section behind */
.background-section {
  position: absolute;
  right: 0;
  top: 145px;
  width: 50%;
  height: 702px;
  background: #c8e8f0;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-right {
    margin-left: 0;
    flex: 1;
    width: 100%;
    max-width: 600px;
  }

  .hero-left {
    width: 100%;
    min-height: 500px;
  }

  .large-beach-image {
    width: 100%;
  }

  .small-photo-frame {
    left: 60px;
  }

  .background-section {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
  }

  .nav-left,
  .nav-right {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    padding: 140px 30px 40px;
  }

  .hero-left {
    min-height: 450px;
  }

  .large-beach-image {
    width: 100%;
    height: 450px;
    min-height: 450px;
  }

  .small-photo-frame {
    width: 280px;
    left: 30px;
    bottom: 20px;
  }

  .small-photo-frame img {
    height: 260px;
  }

  .hero-right {
    padding: 50px 35px;
  }

  .hero-right h1 {
    font-size: 32px;
  }

  .hero-right .subheadline {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .nav-left,
  .nav-right {
    font-size: 11px;
    gap: 15px;
  }

  .logo-text {
    font-size: 38px;
  }

  .hero-right h1 {
    font-size: 26px;
  }

  .hero-right .subheadline {
    font-size: 24px;
  }
}

.cta-section {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Video */
.cta-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay for readability */
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 159, 184, 0.9) 0%,
    rgba(91, 155, 173, 0.4) 100%
  );
  z-index: 1;
}

/* Content above everything */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.cta-badge {
  font-family: "Carattere", cursive;
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 400;
}

.cta-title {
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.cta-description {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-secondary {
  display: inline-block;
  background: #c8e8f0;
  color: #2c5f6f;
  padding: 15px 55px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
  background: #e8f5f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.problem-section {
  /* background: #FFFFFF; */
  padding: 100px 60px;
}

.problem-bg {
  position: absolute;
  right: 0;
  top: 145px;
  width: 50%;
  height: 702px;
  background: #c8e8f0;
  z-index: 1;
}

.problem-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.problem-text {
  flex: 1;
  padding-right: 40px;
}

.problem-title {
  font-size: 36px;
  font-weight: 600;
  color: #5391a4;
  line-height: 1.4;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.problem-points {
  margin-bottom: 35px;
}

.problem-point {
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.9;
  margin-bottom: 18px;
  position: relative;
}

.problem-revelation {
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 25px;
}

.problem-revelation em {
  font-style: italic;
}

.problem-tagline {
  font-family: "Carattere", cursive;
  font-size: 42px;
  color: #5b9bad;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.problem-button {
  display: inline-block;
  background: #5b9bad;
  color: #ffffff;
  padding: 15px 45px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(91, 155, 173, 0.3);
}

.problem-button:hover {
  background: #4a8699;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 155, 173, 0.4);
}

.problem-image {
  flex: 0 0 500px;
  position: relative;
}

.problem-image-frame {
  position: relative;
  background: #c8e8f0;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-image-frame::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  left: 28px;
  bottom: 28px;
  background: #e8f5f7;
  z-index: -1;
}

.problem-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.who-section {
  background:
    linear-gradient(
      135deg,
      rgba(74, 159, 184, 0.9) 0%,
      rgba(91, 155, 173, 0.4) 100%
    ),
    url("./assets/who-section.jpg") no-repeat center center / cover;
  padding: 100px 60px;
}

.who-container {
  max-width: 1400px;
  margin: 0 auto;
}

.who-header {
  text-align: center;
  margin-bottom: 70px;
}

.who-title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.who-subtitle {
  font-family: "Carattere", cursive;
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.who-card {
  background: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid #c8e8f0;
  cursor: pointer;
}

/* Hover animations for cards */
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(91, 155, 173, 0.2);
  background: linear-gradient(135deg, #5b9bad 0%, #4a8699 100%);
}

.who-card:hover .who-card-title,
.who-card:hover .who-card-text {
  color: #ffffff;
  transition: color 0.4s ease;
}

.who-card:hover .who-icon svg {
  filter: brightness(0) invert(1); /* Make icons white on hover */
  transition: filter 0.4s ease;
}

.who-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.who-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.who-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #5b9bad;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.who-card-text {
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.who-inclusive {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #e8f4f6;
}

.inclusive-badge {
  margin-bottom: 25px;
}

.rainbow-border {
  display: inline-block;
  padding: 3px;
  background: linear-gradient(
    90deg,
    #e40303 0%,
    #ff8c00 16.67%,
    #ffed00 33.33%,
    #008026 50%,
    #24408e 66.67%,
    #732982 83.33%,
    #e40303 100%
  );
  border-radius: 30px;
}

.inclusive-text {
  display: inline-block;
  background: #ffffff;
  padding: 12px 35px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #5b5b5b;
  letter-spacing: 0.5px;
}

.inclusive-statement {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
}

.zoom-section {
  padding: 100px 60px;
}

.zoom-container {
  max-width: 1400px;
  margin: 0 auto;
}

.zoom-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.zoom-text {
  flex: 1;
}

.zoom-title {
  font-size: 42px;
  font-weight: 600;
  color: #5391a4;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.zoom-explanation {
  margin-bottom: 50px;
}

.zoom-intro {
  font-size: 18px;
  font-weight: 500;
  color: #5b9bad;
  margin-bottom: 30px;
  line-height: 1.6;
}

.zoom-points {
  margin-bottom: 30px;
  padding-left: 25px;
}

.zoom-point {
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 2;
  font-style: italic;
}

.zoom-power {
  font-size: 19px;
  font-weight: 600;
  color: #5b5b5b;
  line-height: 1.6;
}

.zoom-testimonial {
  position: relative;
  background: linear-gradient(135deg, #f8fcfd 0%, #e8f5f7 100%);
  padding: 35px 40px;
  border-left: 4px solid #5b9bad;
  border-radius: 4px;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: "Carattere", cursive;
  font-size: 80px;
  color: #c8e8f0;
  line-height: 1;
}

.zoom-quote {
  font-size: 16px;
  font-weight: 400;
  color: #5b5b5b;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.zoom-image {
  flex: 0 0 550px;
}

.zoom-image-container {
  position: relative;
}

.zoom-image-container img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.zoom-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #ffffff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.badge-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-number {
  font-size: 28px;
  font-weight: 700;
  color: #5b9bad;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-label {
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.benefits-section {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(74, 159, 184, 0.9) 0%,
      rgba(91, 155, 173, 0.4) 100%
    ),
    url("./assets/what-section.jpg") no-repeat center center / cover;
  padding: 100px 60px;
  overflow: hidden;
}

.benefits-bg-accent {
  position: absolute;
  top: 241px;
  right: 0;
  width: 45%;
  height: 56%;
  background: #c8e8f077;
  z-index: 1;
}

.benefits-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.benefits-title {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 4px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #5b9bad;
  cursor: pointer;
}

/* Hover animations for benefit card */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(91, 155, 173, 0.25);
  background: linear-gradient(135deg, #5b9bad 0%, #4a8699 100%);
}

.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-text {
  color: #ffffff;
  transition: color 0.4s ease;
}

.benefit-card:hover .benefit-icon svg {
  filter: brightness(0) invert(1); /* Make SVG icons white on hover */
  transition: filter 0.4s ease;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: #5b5b5b;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.benefit-text {
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.benefits-footer {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid #e8f4f6;
}

.benefits-closing {
  font-family: "Carattere", cursive;
  font-size: 32px;
  color: #fff;
  margin-bottom: 35px;
  font-weight: 400;
}

.benefits-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #5b9bad 0%, #4a8699 100%);
  color: #ffffff;
  padding: 18px 60px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(91, 155, 173, 0.3);
}

.benefits-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(91, 155, 173, 0.4);
  background: linear-gradient(135deg, #4a8699 0%, #3b7589 100%);
}


.process-section {
  position: relative;
  background: #ffffff;
  padding: 100px 60px;
  overflow: hidden;
}

.process-bg-accent {
  position: absolute;
  top: 248px;
  left: 0;
  width: 65%;
  height: 63%;
  background: #c8e8f0;
  z-index: 1;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-title {
  font-size: 42px;
  font-weight: 600;
  color: #5391a4;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.process-subtitle {
  font-family: "Carattere", cursive;
  font-size: 42px;
  font-weight: 400;
  color: #000;
  font-style: italic;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 50px;

  /* Hover animation */
  transition: transform 0.3s ease;
}

.process-step:last-child {
  padding-bottom: 0;
}

/* Hover effect */
.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5b9bad 0%, #4a8699 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(91, 155, 173, 0.3);
  position: relative;
  z-index: 2;

  /* Hover animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(91, 155, 173, 0.5);
}

.step-content {
  flex: 1;
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #5b9bad;

  /* Hover animation */
  transition: box-shadow 0.3s ease;
}

.process-step:hover .step-content {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #5b5b5b;
  margin-bottom: 10px;
  line-height: 1.3;

  /* Hover animation */
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: #5391a4;
}

.step-text {
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.7;

  /* Hover animation */
  transition: color 0.3s ease;
}

.process-step:hover .step-text {
  color: #4a4a4a;
}

.step-connector {
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, #5b9bad 0%, #c8e8f0 100%);
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

.process-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #e8f4f6;
}

.process-tagline {
  font-size: 36px;
  font-weight: 600;
  color: #5b9bad;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.different-section {
  background:
    linear-gradient(
      135deg,
      rgba(74, 159, 184, 0.9) 0%,
      rgba(91, 155, 173, 0.4) 100%
    ),
    url("./assets/who-section.jpg") no-repeat center center / cover;
  padding: 100px 60px;
}

.different-container {
  max-width: 1400px;
  margin: 0 auto;
}

.different-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.different-visual {
  flex: 0 0 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.different-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.different-image-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: #c8e8f0;
  border-radius: 8px;
  z-index: 1;
}

.different-image-container img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.different-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(91, 155, 173, 0.15) 0%,
    rgba(200, 232, 240, 0.15) 100%
  );
  border-radius: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-icon {
  width: 100px;
  height: 100px;
  opacity: 0.4;
}

.overlay-icon svg {
  width: 100%;
  height: 100%;
}

.different-text {
  flex: 1;
}

.different-title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.different-points {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.different-point {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border-left: 4px solid #c8e8f0;
}

.different-point:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(91, 155, 173, 0.12);
  border-left-color: #5b9bad;
}

.point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f5f7 0%, #c8e8f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.point-icon svg {
  width: 100%;
  height: 100%;
}

.point-content {
  flex: 1;
}

.point-title {
  font-size: 19px;
  font-weight: 600;
  color: #5b5b5b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.point-text {
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.7;
}

.faq-section {
  background: #ffffff;
  padding: 100px 60px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 42px;
  font-weight: 600;
  color: #5391A4;
  letter-spacing: 0.5px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8f4f6;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #c8e8f0;
  box-shadow: 0 4px 20px rgba(91, 155, 173, 0.08);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #f8fcfd 0%, #ffffff 100%);
  border: none;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e8f5f7 0%, #f8fcfd 100%);
}

.question-text {
  font-size: 18px;
  font-weight: 600;
  color: #5b5b5b;
  line-height: 1.4;
  padding-right: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #c8e8f0 0%, #e8f5f7 100%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.8;
  margin: 0;
}

.faq-footer {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid #e8f4f6;
}

.faq-tagline {
  font-size: 28px;
  font-weight: 600;
  color: #5b9bad;
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-cta-text {
  font-family: "Carattere", cursive;
  font-size: 32px;
  color: #5b5b5b;
  font-weight: 400;
}
