body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #c2e6f7 0%, #f3e7ff 50%, #fff3d9 100%);
  background-image:
    radial-gradient(at 10% 20%, rgba(255,255,255,0.6) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,255,255,0.6) 0px, transparent 50%),
    radial-gradient(at 0% 80%, rgba(255,255,255,0.6) 0px, transparent 50%);
  background-attachment: fixed;
  margin: 0;
}



      .navbar-brand {
        font-weight: 700;
        letter-spacing: 0.02em;
      }

      .hero-section {
        padding: 4rem 0 3rem;
        background: radial-gradient(circle at top left, #e0f2fe 0, #f8fafc 45%);
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        background: #e0f2fe;
        color: #0f172a;
        font-size: 0.85rem;
      }

      .hero-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        font-weight: 800;
        line-height: 1.2;
        color: #0f172a;
      }

      .hero-subtitle {
        font-size: 1.02rem;
        color: #475569;
      }

      .section-title {
        font-weight: 700;
        color: #0f172a;
      }

      .section-subtitle {
        color: #64748b;
        font-size: 0.98rem;
      }

      .icon-circle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eff6ff;
        color: #1d4ed8;
        font-size: 1.2rem;
      }

      .step-number {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1d4ed8;
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 600;
      }

      .step-card {
        border-radius: 1rem;
        border: 1px solid #e2e8f0;
        background: #ffffff;
        padding: 1.25rem;
      }

      .faq-item {
        border-radius: 0.75rem;
        border: 1px solid #e2e8f0;
        background: #ffffff;
      }

      .badge-soft {
        background: #e5f0ff;
        color: #1d4ed8;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        font-size: 0.8rem;
      }

      .pill {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        border: 1px solid #e2e8f0;
        font-size: 0.8rem;
        color: #475569;
        gap: 0.35rem;
      }

      .contact-card {
        border-radius: 1.2rem;
        border: 1px solid #dbe3f0;
        background: #ffffff;
      }

      footer {
        border-top: 1px solid #e2e8f0;
        background: #ffffff;
      }

      /* Floating Line Button */
      .floating-line {
        position: fixed;
        right: 1.2rem;
        bottom: 1.2rem;
        z-index: 999;
        text-decoration: none;
      }

      .floating-line-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #06c755;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        animation: line-bounce 1.6s infinite ease-in-out;
      }

      .floating-line-circle span {
        display: block;
        text-align: center;
        line-height: 1.1;
      }

      .floating-line-label {
        font-size: 0.8rem;
        margin-top: 0.2rem;
        text-align: center;
        color: #0f172a;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
      }

      @keyframes line-bounce {
        0%,
        100% {
          transform: translateY(0);
        }
        30% {
          transform: translateY(-6px);
        }
        60% {
          transform: translateY(2px);
        }
      }

      @media (max-width: 575.98px) {
        .hero-section {
          padding: 3rem 0 2rem;
        }
      }
    

      .imgs {
        max-width: 600px;
        margin: 2rem auto;
      }

      img {
        width: 100%;
      }