* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #1a1a1a;
  }
  
  header, nav, main, footer {
    width: 100%;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #6A5ACD;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #e8e9ff;
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
  }
  
  .hero, .features, .demo-video, .support, .privacy {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #6A5ACD;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #6A5ACD;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
  }
  
  .cta-button:hover {
    background-color: #5a4ab5;
  }
  
  .features h2, .demo-video h2, .support h1, .privacy h1 {
    text-align: center;
    color: #6A5ACD;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    font-size: 2rem;
    color: #6A5ACD;
    margin-bottom: 1rem;
  }
  
  .video-container {
    text-align: center;
    margin-top: 2rem;
  }
  
  .video-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .support ul, .privacy p {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  .support a, .privacy a {
    color: #6A5ACD;
    text-decoration: none;
  }
  
  .support a:hover, .privacy a:hover {
    text-decoration: underline;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #6A5ACD;
    color: white;
  }
  
  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem;
    }
  
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #6A5ACD;
      width: 100%;
      padding: 1rem;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
    }
  
    .hero, .features, .demo-video, .support, .privacy {
      padding: 2rem 1rem;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Existing styles remain, add these at the end */

.hero {
    /* Ensure hero takes full height if needed, but centered content handles it */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #f8f9ff 0%, #e8e9ff 100%);
  }
  
  .review-button-container {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .review-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: #ccc; /* Disabled gray */
    color: #666; /* Dark gray text */
    border: 1px solid #999;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: not-allowed; /* No interaction */
    opacity: 0.7;
  }
  
  .review-button:hover {
    background-color: #ccc; /* No hover effect for disabled state */
    color: #666;
  }
  
  /* Footer fix for support page */
  .support-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .support-body main {
    flex: 1 0 auto; /* Pushes footer to bottom */
  }
  
  footer {
    flex-shrink: 0; /* Prevents footer from shrinking */
    text-align: center;
    padding: 1rem;
    background-color: #6A5ACD;
    color: white;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .review-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  
    .hero {
      padding: 2rem 1rem;
    }
  }