html, body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
  }

  /* Full-screen video background */
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover; /* Ensures video covers entire viewport */
    z-index: -1; /* Places video behind all content */
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
  }
  nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #6a1b9a;
    font-weight: 600;
  }
  .hero {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    z-index: 10; /* Ensure text is on top */
  }
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #e2e2e2;
    z-index: 10; /* Ensure text is on top */
  }
  .hero img {
    border-radius: 15px;  /* Rounded corners */
    width: 100px;  /* Adjust to the desired size */
    height: 100px;  /* Ensure the image is square */
    display: block;  /* Remove any spacing caused by inline-block behavior */
    margin: 0;  /* Remove any margin */
    padding: 0;  /* Remove any padding */
  }
  
  .logo {
    display: inline-block;
    background-color: transparent;  /* No background color */
    padding: 0;  /* Remove padding from the logo container */
    border-radius: 12px;  /* Optional: rounded edges for container */
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a1b9a;
  }
  .store-btn img {
    height: 48px;
    width: auto;
    display: inline-block;
  }
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .btn {
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }
  .btn-primary {
    background-color: #6a1b9a;
    color: white;
  }
  .btn-outline {
    border: 2px solid #6a1b9a;
    color: #6a1b9a;
  }
  .cta {
    background: #ede7f6;
    text-align: center;
    padding: 4rem 2rem;
  }
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .footer {
    background: #6a1b9a;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
  }

  .features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    margin-top: 5rem; /* or more */
  }
  
  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .feature-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .feature-img img {
    max-width: 300px; /* Previously 300px */
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .feature-text h3 {
    font-size: 1.5rem; /* was likely 1.25rem or smaller */
    margin-bottom: 0.5rem;
  }
  
  .feature-text p {
    font-size: 1.1rem; /* or try 1.125rem or even 1.25rem for more impact */
    line-height: 1.6;
  }

  .testimonials {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonial {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .testimonial .quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #444;
  }
  
  .testimonial .author {
    margin-top: 1rem;
    font-weight: bold;
    color: #666;
  }

  .contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .contact-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .contact-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .contact-form label {
    text-align: left;
    font-weight: 500;
    color: #333;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
  }

  .contact-form button {
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #6a85ff;
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #5a75e0;
  }

  .about-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 5rem auto;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .about-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .usage-terms {
    flex: 1;
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .usage-terms h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .usage-terms h3 {
    margin-top: 2rem;
    color: #4a60dd;
  }

  .usage-terms p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .follow-us {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .follow-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4a60dd;
  }
  
  .follow-us p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.15);
  }
  
  /* Responsive layout for desktop */
  @media (min-width: 768px) {
    .feature {
      flex-direction: row;
      text-align: left;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }
  
    .feature:nth-child(even) {
      flex-direction: row-reverse;
    }
  
    .feature-text {
      flex: 1;
    }
  
    .feature-img {
      flex: 1;
      display: flex;
      justify-content: center;
    }
  
    .feature-img img {
      width: 100%;
      max-width: 400px;
    }

    .feature-text {
        text-align: left;
      }

      .hero-content h1 {
        font-size: 2rem;
      }
    
      .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
      }
    
      .hero {
        height: auto; /* If 100vh causes issues */
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
  }

  @media (max-width: 600px) {
    nav a {
      margin-left: 1rem;
      font-size: 0.95rem;
    }

    .contact-section {
      margin: 2rem 1rem;
      padding: 3rem 1.5rem;
    }

    .about-section {
      margin: 2rem 1rem;
      padding: 3rem 1.5rem;
    }

    .about-section h2 {
      font-size: 1.75rem;
    }

    main {
      margin: 2rem 1rem;
      padding: 2rem 1.2rem;
    }

    h2 {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 415px) {
    .background-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 110%;
      object-fit: cover; /* Ensures video covers entire viewport */
      z-index: -1; /* Places video behind all content */
    }
  }