    :root {
      --orange: #F97316;
      --orange-dark: #EA580C;
      --gray-dark: #1E1E1E;
      --gray-medium: #2A2A2A;
      --gray-light: #404040;
      --headline: #F9F9F9;
      --body: #E5E7EB;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
      color: var(--body);
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Navbar Styles */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      background: linear-gradient(90deg, var(--gray-dark) 80%, var(--gray-medium) 100%);
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0,0,0,0.13);
      padding: 0;
    }

    .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.2rem 1.5rem;
      flex-wrap: nowrap;
    }

    .navbar-logo img {
      height: 60px;
      width: auto;
      filter: drop-shadow(0 2px 6px #000);
    }

    .navbar-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navbar-links li a {
      color: var(--headline);
      font-weight: 500;
      font-size: 1.15rem;
      text-decoration: none;
      transition: color 0.2s;
      padding: 0.5rem 0;
    }

    .navbar-links li a:hover,
    .navbar-book-link:hover {
      color: var(--orange);
    }

    /* Special Free Stuff Button Styling */
    .free-stuff-btn {
      background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
      color: white !important;
      padding: 0.6rem 1.2rem !important;
      border-radius: 25px !important;
      font-weight: 600 !important;
      position: relative !important;
      overflow: hidden !important;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
      animation: pulse-glow 2s infinite !important;
    }

    .free-stuff-btn:hover {
      background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
    }

    .free-stuff-btn::before {
      content: '🎁' !important;
      margin-right: 0.5rem !important;
    }

    @keyframes pulse-glow {
      0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
      }
      50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7);
      }
    }

    .navbar-book-btn {
      margin-left: 1rem;
      padding: 0.6rem 1.2rem;
      font-size: 1.08rem;
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      color: white;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .navbar-book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    }

    .navbar-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }

    .navbar-toggle span {
      width: 25px;
      height: 3px;
      background: var(--headline);
      margin: 3px 0;
      transition: 0.3s;
    }

    /* Container Styles */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(234,88,12,0.08) 100%);
      border-radius: 20px;
      padding: 4rem 2rem;
      text-align: center;
      margin-bottom: 3rem;
      border: 1px solid rgba(249,115,22,0.2);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(249,115,22,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--headline);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero p {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      color: var(--body);
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      min-width: 200px;
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      color: white;
      border-color: var(--orange);
    }

    .btn-secondary {
      background: transparent;
      color: var(--orange);
      border-color: var(--orange);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid rgba(249, 115, 22, 0.2);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: rgba(249, 115, 22, 0.4);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .service-card h3 {
      color: var(--orange);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .service-card p {
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .service-features {
      list-style: none;
      padding: 0;
    }

    .service-features li {
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: flex-start;
      text-align: left;
    }

    .service-features li:last-child {
      border-bottom: none;
    }

    .service-features li::before {
      content: '✓';
      color: var(--orange);
      font-weight: bold;
      margin-right: 0.5rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    /* Benefits Section */
    .benefits {
      background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, rgba(168,85,247,0.05) 100%);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin: 3rem 0;
      border: 1px solid rgba(249,115,22,0.15);
    }

    .benefits h2 {
      text-align: center;
      color: var(--headline);
      font-size: 2.5rem;
      margin-bottom: 2rem;
      font-weight: 700;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .benefit-item {
      text-align: center;
      padding: 1.5rem;
    }

    .benefit-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .benefit-item h3 {
      color: var(--orange);
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    /* Pricing Section */
    .pricing {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin: 3rem 0;
      border: 1px solid rgba(249, 115, 22, 0.2);
    }

    .pricing h2 {
      text-align: center;
      color: var(--headline);
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .pricing-subtitle {
      text-align: center;
      color: var(--body);
      font-size: 1.2rem;
      margin-bottom: 3rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .pricing-card {
      background: linear-gradient(135deg, var(--gray-medium) 0%, var(--gray-light) 100%);
      border-radius: 16px;
      padding: 2rem;
      border: 2px solid rgba(249, 115, 22, 0.3);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-card.featured {
      border-color: var(--orange);
      transform: scale(1.05);
      padding-top: 3.5rem;
    }

    .pricing-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 1rem;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 10;
    }

    .pricing-card h3 {
      color: var(--orange);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .pricing-card .price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--headline);
      margin-bottom: 0.5rem;
    }

    .pricing-card .price-note {
      color: var(--body);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      border-radius: 20px;
      padding: 3rem 2rem;
      text-align: center;
      color: white;
      margin: 3rem 0;
    }

    .contact-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .contact-section p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .navbar-container {
        padding: 1rem;
      }

      .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gray-dark);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      }

      .navbar-links.active {
        display: flex;
      }

      .navbar-links li {
        margin: 0.5rem 0;
      }

      /* Mobile Free Stuff Button */
      .free-stuff-btn {
        display: block !important;
        text-align: center !important;
        margin: 0.8rem 0 !important;
        padding: 0.8rem 1.5rem !important;
        border-radius: 30px !important;
        font-size: 1.1rem !important;
        background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5) !important;
      }

      .navbar-book-btn {
        margin-left: 0;
        margin-top: 1rem;
      }

      .navbar-toggle {
        display: flex;
      }

      .container {
        padding: 2rem 1rem;
      }

      .hero {
        padding: 3rem 1.5rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: none;
      }

      .contact-info {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease-out forwards;
    }