.body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--background-color);
      color: var(--text-color);
    }
.container {
  margin-top: 40px;
}

.cta-button:hover {
      background: #218838;
    }

section {
      padding: 40px 20px;
      max-width: 100%;
      margin: auto;
    }

.section-title {
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
    }

ul {
      list-style: none;
      padding: 0;
    }

.services, .plans, .testimonials, .faq {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

.card {
      background: var(--card-bg);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      flex: 1;
      min-width: 250px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .contact-form {
      display: grid;
      gap: 15px;
      max-width: 600px;
      margin: auto;
    }

    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
    }

    .contact-form button {
      padding: 12px;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #0056b3;
    }

    @media (max-width: 768px) {
      .services, .plans, .testimonials, .faq {
        flex-direction: column;
        align-items: center;
      }
    }

  
    .hero-section {
      background-image: url(assets/amcbg.webp);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 40vh;
    }

    .hero-content {
      background-color: rgba(255, 255, 255, 0.85);
      padding: 40px 30px;
      border-radius: 10px;
      max-width: 600px;
      width: 100%;
      box-sizing: border-box;
    }

    .hero-content h1 {
      margin-bottom: 20px;
      font-size: 2em;
      color: #000;
    }

    .hero-content p1 {
      display: block;
      margin-bottom: 30px;
      color: #333;
      font-size: 1.1em;
    }

    .cta-button {
      background-color: rgb(177, 17, 17);
      color: white;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 15px;
      }

      .hero-content {
        padding: 30px 20px;
      }

      .hero-content h1 {
        font-size: 1.5em;
      }

      .hero-content p1 {
        font-size: 1em;
      }
    }
    .card {
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
      width: 200px;
      border: 1px solid #ccc;
      margin: 10px;
      text-align: center;
    }
