 /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background-color: #0e0e0e;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Hero section */
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            background-color: #101010;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero h1 span {
            color: #5d8cf7;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

         .heroService {
            text-align: center;
            padding: 1rem 1rem;
            background-color: #101010;
            border-radius: 0px;
            margin-bottom: 0.5rem;
        }

        .heroService h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .heroService h1 span {
            color: #5d8cf7;
        }

        .heroService p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .how-it-works p {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Features Section */
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .feature {
            display: flex;
            align-items: center;
            background-color: rgba(93, 140, 247, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-bottom: 0.5rem;
        }

        .feature svg {
            color: #5d8cf7;
            margin-right: 0.5rem;
        }

        /* Example Section */
        .example {
            text-align: center;
            margin-bottom: 3rem;
        }

        .example-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-color: #161616;
            padding: 1rem;
        }

        /* Pricing Section */
        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-header h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .pricing-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background-color: #161616;
            border-radius: 10px;
            padding: 2rem;
            width: 100%;
            max-width: 350px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .pricing-card.popular {
            border-color: #5d8cf7;
            box-shadow: 0 5px 20px rgba(93, 140, 247, 0.2);
        }

        .popular-tag {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: #5d8cf7;
            color: white;
            padding: 0.25rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
        }

        .features-list li svg {
            color: #5d8cf7;
            margin-right: 0.5rem;
            min-width: 20px;
            margin-top: 0.25rem;
        }

        .cta-button {
            display: inline-block;
            background-color: #5d8cf7;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            width: 100%;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #4a77e5;
            transform: translateY(-2px);
        }

        .cta-button.outline {
            background-color: transparent;
            border: 2px solid #5d8cf7;
            color: #5d8cf7;
        }

        .cta-button.outline:hover {
            background-color: rgba(93, 140, 247, 0.1);
        }

        /* How It Works Section */
        .how-it-works {
            margin-bottom: 4rem;
        }

        .how-it-works h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: #5d8cf7;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            margin-bottom: 4rem;
        }

        .why-choose-us h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
        }

        .why-choose-us p {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit {
            background-color: #161616;
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .benefit-icon {
            color: #5d8cf7;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .benefit h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .benefit p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }

            .steps {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2rem;
            }
        }

         header {
      background-color: #000;
      color: white;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
  .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.logo span {
  color: #5d8cf7;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  display: block;
}

nav ul li a:hover {
  color: #5d8cf7;
}

/* Dropdown menu */
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 2.2rem;
  left: 0;
  background-color: #111;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  border-radius: 4px;
  z-index: 1000;
}

nav ul li:hover ul.dropdown {
  display: block;
}

nav ul li ul.dropdown li a {
  padding: 0.5rem 1rem;
  color: white;
  white-space: nowrap;
}

nav ul li ul.dropdown li a:hover {
  background-color: #222;
  color: #5d8cf7;
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #000;
  padding: 1rem 2rem;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.mobile-nav a:hover {
  color: #5d8cf7;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }
}

   /* FAQ Styles - Add this to your CSS */
    .faq-section {
        background-color: #111827;
        padding: 4rem 1rem;
        border-radius: 10px;
        margin: 2rem 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-wrapper {
        max-width: 64rem;
        margin: 0 auto;
    }

    .faq-title {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 3rem;
        color: white;
    }

    .faq-item {
        background-color: #1f2937;
        border: 1px solid #374151;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #3b82f6;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        color: white;
        padding: 1.5rem;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.125rem;
        font-weight: 600;
        transition: background-color 0.2s ease;
        font-family: inherit;
    }

    .faq-question:hover {
        background-color: #2d3748;
    }

    .faq-question:focus {
        outline: none;
        background-color: #2d3748;
    }

    .faq-chevron {
        color: #3b82f6;
        transition: transform 0.3s ease;
        font-size: 1.2rem;
        margin-left: 1rem;
        flex-shrink: 0;
    }

    .faq-item.active .faq-chevron {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .faq-item.active .faq-answer {
        opacity: 1;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
        color: #d1d5db;
        line-height: 1.6;
    }

    .faq-separator {
        height: 1px;
        background-color: #374151;
        margin: 0 1.5rem 1rem;
    }

    .faq-footer {
        text-align: center;
        margin-top: 3rem;
    }

    .faq-footer p {
        color: #9ca3af;
        margin-bottom: 1rem;
    }

    .contact-btn {
        background-color: #3b82f6;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease;
        font-size: 1rem;
    }

    .contact-btn:hover {
        background-color: #2563eb;
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 1.75rem;
        }
        
        .faq-question {
            font-size: 1rem;
            padding: 1.25rem;
        }
        
        .faq-answer-content {
            padding: 0 1.25rem 1.25rem;
        }
        
        .faq-separator {
            margin: 0 1.25rem 1rem;
        }
    }
    .contact-btn:hover {
        background-color: #2563eb;
    }

    .dr90-button {
        display: inline-block;
        background-color: #5d8cf7;
        color: #ffffff;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.2s ease;
    }

    .dr90-button:hover {
        background-color: #467df5;
    }

  .intake-form-card {
      background-color: #111;
      border: 1px solid #333;
      border-radius: 1rem;
      padding: 2rem;
      max-width: 700px;
      margin: 2rem auto;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
    }
    .intake-form-card h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #fff;
    }
    .intake-form-card label {
      display: block;
      margin-top: 1rem;
      font-weight: 500;
    }
    .intake-form-card input,
    .intake-form-card select,
    .intake-form-card textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #444;
      border-radius: 0.5rem;
      background: #1c1c1c;
      color: #eee;
      font-size: 1rem;
      margin-top: 0.25rem;
    }
    .intake-form-card input[type="radio"],
    .intake-form-card input[type="checkbox"] {
      width: auto;
      margin-right: 0.5rem;
    }
    .intake-form-card button {
      margin-top: 1.5rem;
      background: #3b82f6;
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }
    .intake-form-card button:hover {
      background: #2563eb;
    }
    .hidden {
      display: none;
    }