 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #0b1e3c;
      color: white;
    }

    header {
      width: 100%;
      padding: 15px 20px;
      background-color: #0b1e3c;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav.desktop-menu {
      display: flex;
      gap: 25px;
    }

    nav.desktop-menu a {
      color: white;
      font-weight: 500;
      text-decoration: none;
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .burger span {
      height: 3px;
      width: 25px;
      background-color: white;
      display: block;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #0b1e3c;
      padding: 20px;
      z-index: 9998;
    }

    .mobile-menu a {
      color: white;
      padding: 12px 0;
      text-decoration: none;
      font-size: 1.2rem;
    }

    .mobile-menu.show {
      display: flex;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 9990;
    }

    .overlay.show {
      display: block;
    }

    .why {
      background: white;
      color: #0b1e3c;
      padding: 60px 20px 40px;
      text-align: center;
    }

    .why h2 {
      margin-bottom: 10px;
    }

    .why p {
      margin-bottom: 30px;
      font-size: 1.1rem;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .feature {
      width: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .feature i {
      font-size: 32px;
      margin-bottom: 10px;
      color: #2a75ff;
    }

    @media (max-width: 768px) {
      nav.desktop-menu {
        display: none;
      }

      .burger {
        display: flex;
      }

      section {
        background-size: cover !important;
        background-position: center top !important;
        min-height: 200px !important;
        padding: 80px 15px !important;
      }

      section h1 {
        font-size: 2rem !important;
      }

      section p {
        font-size: 1rem !important;
      }
    }

    /* === Modal styles === */
    .modal-overlay, .modal-secondary {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .modal-wrapper {
      background: #0b1e3c;
      color: white;
      padding: 30px;
      border-radius: 12px;
      width: 960px;
      max-width: 960px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      color: white;
      cursor: pointer;
    }

    .grid-2x2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .card {
      background: rgba(255, 255, 255, 0.05);
      padding: 20px;
      border-radius: 10px;
      text-align: left;
    }

    .card h3 {
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 1.1rem;
      color: #2a75ff;
    }

    .card p {
      font-size: 0.95rem;
      color: #ccc;
    }

    .card ul {
      padding-left: 18px;
      font-size: 0.9rem;
    }

    .card .icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .card button {
      margin-top: 15px;
      background: #2a75ff;
      color: white;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      font-weight: 600;
    }

    .form-wrapper {
      background: #0b1e3c;
      padding: 30px;
      border-radius: 10px;
      width: 400px;
      color: white;
      position: relative;
    }

    .form-wrapper input,
    .form-wrapper select,
    .form-wrapper textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0 15px;
      border: none;
      border-radius: 5px;
    }

    .form-wrapper button {
      background: #2a75ff;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      width: 100%;
    }

    .form-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }

    .success-message {
      display: none;
      text-align: center;
      font-size: 1rem;
      color: #2aff88;
    }
    .benefit-item {
    text-align: center;
    padding: 10px 15px;
  }

  .benefit-icon {
    width: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  .benefit-item p {
    font-size: 1rem;
    color: #1a1a1a;
  }
   .benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  }
    .quiz-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .quiz-card:hover {
    transform: translateY(-5px);
  }

  .quiz-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
  }

  .quiz-card p {
    margin: 0;
    font-weight: 600;
    color: #0b1e3c;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .quiz-card {
      padding: 15px;
    }
  }
  .feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  }

  .feature-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2a75ff;
  }

  #openQuoteModal:hover {
    background-color: #1e5ed7;
  }
     .fade-up {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: 0.1s; }
    .fade-up:nth-child(2) { animation-delay: 0.2s; }
    .fade-up:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
        .quiz-card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.2s;
      cursor: pointer;
    }
    .quiz-card:hover {
      transform: translateY(-5px);
    }
    .quiz-card img {
      width: 64px;
      height: 64px;
      margin-bottom: 10px;
    }
    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.5);
      align-items: center;
      justify-content: center;
      z-index: 10000;
      display: none;
    }
    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 12px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .modal-content h3 {
      font-size: 1.6rem;
      margin-bottom: 10px;
      color: #0b1e3c;
    }
    .modal-content p, .modal-content li {
      color: #333;
      font-size: 1rem;
    }
    .modal-content ul {
      padding-left: 20px;
      text-align: left;
      margin-top: 10px;
    }
    .modal-close {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 1.2rem;
      color: #999;
      cursor: pointer;
    }
    .modal-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #2a75ff;
  color: white;
  font-size: 28px;
  text-align: center;
  line-height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
