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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header & Navigation */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #F5F0FA;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.4rem;
      font-weight: 800;
      color: #333;
      text-decoration: none;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
      border-radius: 6px;
      border: 1px solid #D4AF37;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-family: 'Georgia', serif;
      font-style: italic;
      letter-spacing: -0.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    nav a {
      color: #555;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #8B5CF6;
    }

    .cta-btn {
      background: #8B5CF6;
      color: white !important;
      padding: 0.6rem 1.4rem;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .cta-btn:hover {
      background: #6D28D9;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
      }

      nav.active {
        display: flex;
      }

      nav ul {
        flex-direction: column;
        gap: 1rem;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* Pricing Section */
    .pricing-section {
      padding: 80px 0;
      background: white;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .pricing-header h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #333;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .pricing-header p {
      font-size: 1.1rem;
      color: #777;
      max-width: 700px;
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .pricing-card {
      border: 2px solid #8B5CF6;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .pricing-card:hover {
      box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
      transform: translateY(-5px);
    }

    .pricing-card.featured {
      border-color: #8B5CF6;
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    }

    .pricing-header-card {
      background: #8B5CF6;
      color: white;
      padding: 1.5rem;
      text-align: center;
    }

    .pricing-header-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0;
    }

    .pricing-body {
      padding: 2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .price {
      font-size: 2.2rem;
      font-weight: 800;
      color: #8B5CF6;
      margin-bottom: 0.5rem;
      line-height: 1;
    }

    .price-currency {
      font-size: 1rem;
      color: #777;
      font-weight: 500;
      display: block;
      margin-bottom: 1.5rem;
    }

    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-grow: 1;
    }

    .features-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
    }

    .features-list li::before {
      content: '✓';
      color: #8B5CF6;
      font-weight: 700;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .pricing-button {
      background: #8B5CF6;
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
      margin-top: auto;
    }

    .pricing-button:hover {
      background: #6D28D9;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
    }

    .pricing-button:active {
      transform: translateY(0);
    }

    /* Footer */
    footer {
      background: #2D1B4E;
      color: white;
      padding: 3rem 0 1.5rem;
      margin-top: 4rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section h3 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.8rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: #8B5CF6;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      margin: 0;
      font-size: 0.9rem;
      opacity: 0.7;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: #8B5CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: background 0.3s ease;
    }

    .social-links a:hover {
      background: #6D28D9;
    }

    /* Scroll to top */
    .scroll-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 45px;
      height: 45px;
      background: #8B5CF6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 50;
    }

    .scroll-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .scroll-to-top:hover {
      background: #6D28D9;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-header h1 {
        font-size: 1.8rem;
      }

      .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
      }
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pricing-card {
      animation: slideInUp 0.6s ease forwards;
    }

    .pricing-card:nth-child(2) {
      animation-delay: 0.1s;
    }

    .pricing-card:nth-child(3) {
      animation-delay: 0.2s;
    }

    .pricing-card:nth-child(4) {
      animation-delay: 0.3s;
    }
  
