body { margin: 0; font-family: Arial, sans-serif; }

    /* HERO */
    .hero {
      background: linear-gradient(to bottom, #ffb27f, #ff8533);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }
    .hero h1 {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: auto;
    }

    /* SECTIONS */
    .section {
      padding: 70px 20px;
      text-align: center;
    }
    .section h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #ff8533;
      font-weight: bold;
    }
    .section p {
      font-size: 1.1em;
      max-width: 950px;
      margin: auto;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* SERVICES LIST */
    .services-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 40px;
    }
    .service-card {
      background: #fff;
      border: 2px solid #ddd;
      border-radius: 15px;
      padding: 30px;
      width: 280px;
      text-align: center;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: scale(1.05); }
    .service-card i {
      font-size: 2.2em;
      color: #ff8533;
      margin-bottom: 15px;
    }
    .service-card h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #333;
    }
    .service-card p {
      font-size: 0.95em;
      color: #555;
    }

    /* CTA */
    .cta {
      background: #ff8533;
      color: white;
      padding: 50px 20px;
      text-align: center;
      border-radius: 10px;
      margin: 60px auto;
      max-width: 900px;
    }
    .cta h2 {
      margin-bottom: 20px;
      font-size: 2em;
    }
    .btn-cta {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      background: white;
      color: #ff8533;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s;
    }
    .btn-cta:hover { background: #f1f1f1; }

    /* FOOTER */
   
    .footer h4 { margin-bottom: 15px; font-size: 1.2em; }
    .footer a { color: #ddd; text-decoration: none; }
    .footer a:hover { color: #fff; }
    .newsletter input {
      padding: 8px;
      width: 70%;
      border: none;
      border-radius: 5px;
      margin-bottom: 10px;
    }
    .newsletter button {
      padding: 8px 15px;
      border: none;
      background: #ff8533;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }
   