body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #222; 
    padding: 2rem;
    background-color: #f9f9f9;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
  }
  header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
  }
  .btn {
    padding: 1rem 5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }
  .btn-primary {
    background: black;
    color: white;
  }
  .btn-outline {
    background: white;
    color: black;
    border: 1px solid black;
  }
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background: white;
  }
  .hero-text {
    max-width: 600px;
  }
  .hero-text h1 {
    font-size: 3rem;
    margin: 0 0 1rem 0;
  }
  .hero-text p {
    font-size: 1.2rem;
    color: #555;
  }
  .hero-buttons {
    margin-top: 2rem;
  }
  .hero-buttons .btn {
    margin-right: 1rem;
  }
  .hero-image img {
    max-width: 300px;
  }
  .pricing {
    padding: 4rem 2rem;
    text-align: center;
  }
  .pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .pricing p {
    color: #555;
    margin-bottom: 3rem;
  }
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .privacy {
    padding: 4rem 2rem;
    text-align: center;
  }
  .privacy h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .privacy p {
    color: #555;
    margin-bottom: 3rem;
  }
  .privacy-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .terms {
    padding: 4rem 2rem;
    text-align: center;
  }
  .terms h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .terms p {
    color: #555;
    margin-bottom: 3rem;
  }
  .terms-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .footer { 
    text-align: center;
  }

  .card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
  }
  .card h3 {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
  }
  .card .price {
    font-size: 2rem;
    margin: 1rem 0;
  }
  .card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  .card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  .card ul li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: green;
  }
  .card .btn {
    width: 100%;
    margin-top: 1rem;
  }
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
    .hero-image img {
      margin-top: 2rem;
    }
