  /* Reset */
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0; 
    background-color: #F5F6FA;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
  }
  .container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  header {
    text-align: center;
    margin-bottom: 60px;
  }
  header h1 {
    font-weight: 900;
    font-size: 3rem;
    color: #06294A;
    margin-bottom: 8px;
  }
  header h1 .highlight {
    color: #0066CC;
  }
  header p {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Grid for sections */
  .section {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
  }

  /* Text side */
  .section-text {
    padding-right: 10px;
  }
  .section-text h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #06294A;
    margin-bottom: 20px;
  }
  .section-text h2 .highlight {
    color: #0066CC;
  }
  .section-text p {
    font-size: 1.1rem;
    color: #444;
  }
  .section-text ul {
    margin-top: 20px;
    padding-left: 20px;
    color: #444;
  }
  .section-text ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
  }
  .section-text ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #0066CC;
  }

  /* Image side */
  .section-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  /* Video embed */
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    margin-bottom: 60px;
  }
  .video-container iframe, 
  .video-container object, 
  .video-container embed {
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
  }

  /* Responsive tweaks */
  @media (max-width: 700px) {
    .section {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .section-text {
      padding-right: 0;
    }
  }

  footer {
    text-align: center;
    color: #999;
    padding: 20px 10px;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
  }
  
  
  /*QUESTIONS*/
.faq-section {
  max-width: 900px;
  margin: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.1);
  padding: 40px;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #06294A;
}

.faq-title span {
  color: #0066CC;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #dde1e7;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item input {
  display: none;
}

.faq-question {
  display: block;
  background-color: #F5F6FA;
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background-color: #eaf2fb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #333;
  transition: all 0.4s ease;
}

.faq-item input:checked ~ .faq-answer {
  padding: 20px;
  max-height: 300px;
}

  /*BUTTON SUBSCRIPTION*/
    .btn-glow {
      position: relative;
      display: inline-block;
      padding: 30px 80px;
      font-size: 3rem;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      background: linear-gradient(90deg, #0066CC, #004A99);
      border: none;
      border-radius: 15px;
      cursor: pointer;
      box-shadow:
        0 0 10px #0066CC,
        0 0 20px #0066CC,
        0 0 30px #00aaff,
        0 0 40px #00aaff,
        0 0 50px #00d4ff,
        0 0 60px #00d4ff;
      transition: box-shadow 0.3s ease-in-out;
      user-select: none;
      text-align: center;
    }

    .btn-glow::before, .btn-glow::after {
      content: "";
      position: absolute;
      top: -8px; left: -8px; right: -8px; bottom: -8px;
      border-radius: 20px;
      box-shadow:
        0 0 15px #0066CC,
        0 0 30px #00aaff,
        0 0 45px #00d4ff;
      opacity: 0.7;
      animation: glowPulse 2.5s infinite alternate ease-in-out;
      pointer-events: none;
      z-index: -1;
    }

    .btn-glow::after {
      top: -15px; left: -15px; right: -15px; bottom: -15px;
      border-radius: 25px;
      animation-delay: 1.25s;
    }

    @keyframes glowPulse {
      0% {
        box-shadow:
          0 0 15px #0066CC,
          0 0 30px #00aaff,
          0 0 45px #00d4ff;
        opacity: 0.7;
      }
      100% {
        box-shadow:
          0 0 25px #0099FF,
          0 0 40px #33bbff,
          0 0 60px #66ddff;
        opacity: 1;
      }
    }

    .btn-glow:hover {
      box-shadow:
        0 0 20px #0099FF,
        0 0 40px #33bbff,
        0 0 60px #66ddff,
        0 0 80px #99eeff;
      transition: box-shadow 0.2s ease-in-out;
    }