 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 
    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f9fc;
      color: #333;
    }

 a{
    text-decoration: none;
 }
 li{
    list-style: none;
 }
 .section-container{
      padding: 4rem 1rem;
      max-width: 1100px;
      margin: auto;
    }

.cta-btn {
      margin-top: 2rem;
      padding: 0.8rem 2rem;
      font-weight: 600;
      background-color: #ffc107;
      color: #000;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .cta-btn:hover {
      background-color: #e0a800;
    }

       .her-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('/yellow-black-sign-taxi-placed-top-car-night.jpg') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 6rem 1rem;
    }

 .her-section h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

 .her-section p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }


       .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .feature-box {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      cursor: pointer;
    }

    
    .feature-box img {
      height: 50px;
      margin-bottom: 1rem;
    }

    .feature-box h3 {
      margin-bottom: 0.5rem;
      color: #333;
    }

    .stripe-section{
        text-align: center;
    }

        .how-it-works {
      text-align: center;
    }

    .how-it-works h2 {
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .download-buttons {
      text-align: center;
      margin-top: 2rem;
    }

    .download-buttons img {
      height: 50px;
      margin: 0 10px;
    }

/* delete data policy page */

  .account-main{
    max-width: 900px;
      margin: 2rem auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 10px;
 
  }
 

    .account-main  h1 {
      font-size: 2rem;
      margin-top: 1.5rem;
    }

   .account-main h2 {
      font-size: 1.4rem;
      margin-top: 1.5rem;
    }

   .account-main p {
      margin: 1rem 0;
    }

/* footer */
      footer {
      background: #111;
      color: #aaa;
      text-align: center;
      padding: 2rem 1rem;
      margin-top: 3rem;
    }
 footer ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
   
 }
  footer ul a{
color: #fff;
text-transform: capitalize;
  }

  /* navbar */

  /* Navbar Styles */
/* Navbar Base */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

/* Menu Icon (hamburger) */
.menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffc107;
}


  
    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }

      .cta-btn {
        padding: 0.7rem 1.5rem;
      }
      .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
    }