* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f2937;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
  }
  
  .logo {
    font-size: 20px;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #d1d5db;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 120px 24px 64px;
    text-align: center;
  }
  
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
  }
  
  .hero-content.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: bold;
    margin-bottom: 24px;
    /* Using !important to force white color and remove any gradient effects */
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  }
  
  .hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-description {
    font-size: 18px;
    color: #9ca3af;
    max-width: 512px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 64px 24px;
  }
  
  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  
  .section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  .section-subtitle {
    font-size: 20px;
    color: #9ca3af;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  .pricing-card {
    background-color: #111827;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.1);
  }
  
  .pricing-card.premium {
    position: relative;
  }
  
  .popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .card-content {
    text-align: center;
  }
  
  .package-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    transition: color 0.3s ease;
  }
  
  .pricing-card:hover .package-title {
    color: #ffffff;
  }
  
  .price {
    margin-bottom: 24px;
  }
  
  .price-amount {
    font-size: 48px;
    font-weight: bold;
  }
  
  .price-currency {
    font-size: 20px;
    color: #9ca3af;
    margin-left: 8px;
  }
  
  .package-description {
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  
  .features-list {
    margin-bottom: 32px;
    text-align: left;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .feature-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 12px;
  }
  
  .cta-button {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e5e7eb;
    transform: scale(1.05);
  }
  
  .cta-button:active {
    transform: scale(0.95);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 64px 24px;
    border-top: 1px solid #1f2937;
  }
  
  .contact-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-description {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 48px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact Information Styles */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 48px auto;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: #111827;
    border-radius: 16px;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .whatsapp-icon {
    background-color: #25D366;
    color: white;
  }

  .email-icon {
    background-color: #EA4335;
    color: white;
  }

  .contact-details {
    flex: 1;
  }

  .contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
  }

  .contact-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 4px;
  }

  .contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .email-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-button.primary {
    background-color: #ffffff;
    color: #000000;
  }
  
  .cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
  }
  
  .cta-button.secondary:hover {
    background-color: #ffffff;
    color: #000000;
  }
  
  /* Footer */
  .footer {
    padding: 32px 24px;
    border-top: 1px solid #1f2937;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  .footer-description {
    color: #9ca3af;
    margin-bottom: 16px;
  }
  
  .footer-copyright {
    font-size: 14px;
    color: #6b7280;
  }
  
  /* Responsive Design */
  @media (min-width: 640px) {
    .contact-buttons {
      flex-direction: row;
    }

    .contact-info {
      max-width: 700px;
    }
  
    .nav-links {
      display: flex;
    }
  }
  
  @media (max-width: 639px) {
    .nav-links {
      display: none;
    }
  
    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }

    .contact-details {
      width: 100%;
    }

    .email-links {
      align-items: center;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Animation keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  