 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* HERO CAROUSEL */
    header.hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    header.hero img {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: all 1s ease-in-out;
    }
    header.hero img.active {
      left: 0;
      opacity: 1;
    }
    header.hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1rem;
    }
    header.hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: fadeInDown 1s ease;
    }
    header.hero p {
      font-size: 1.2rem;
      animation: fadeInUp 1.2s ease;
    }
    header.hero a {
      margin-top: 1.5rem;
      padding: 0.8rem 1.5rem;
      background: #1e88e5;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
    header.hero a:hover {
      background: #1565c0;
    }

    /* SECTIONS */
    section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }
    section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #1e88e5;
    }

    /* PROCESS CAROUSEL */
    .card-carousel {
      display: flex;
      transition: transform 0.8s ease-in-out;
      width: 100%;
    }
    .carousel-wrapper {
      max-width: 700px;
      margin: auto;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    .card {
      min-width: 100%;
      height: 250px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: flex-end;
      color: #fff;
    }
    .card .overlay {
      width: 100%;
      padding: 1.5rem;
      background: rgba(0,0,0,0.55);
      text-align: left;
    }
    .card h3 {
      margin: 0;
      font-size: 1.5rem;
    }

    /* PRICING */
    .pricing-table {
      width: 100%;
      max-width: 700px;
      margin: auto;
      border-collapse: collapse;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .pricing-table th, .pricing-table td {
      padding: 1rem;
      border-bottom: 1px solid #eee;
    }
    .pricing-table th {
      background: #1e88e5;
      color: #fff;
      font-size: 1.2rem;
      text-align: left;
    }
    .pricing-table td {
      text-align: left;
    }
    .pricing-table tr:last-child td {
      border-bottom: none;
    }

    /* TESTIMONIALS */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .testimonial {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .testimonial img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial strong {
      color: #1e88e5;
    }

    /* FAQ */
    .faq {
      max-width: 800px;
      margin: auto;
      text-align: left;
    }
    .faq-item {
      background: #fff;
      margin-bottom: 1rem;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: 0.3s;
    }
    .faq-item:hover {
      background: #f1f9ff;
    }
    .faq-question {
      font-weight: bold;
      color: #1e88e5;
    }
    .faq-answer {
      display: none;
      margin-top: 0.5rem;
      color: #444;
    }

    /* FORMS */
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: auto;
    }
    input, textarea, select, button {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    button {
      background: #1e88e5;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }
    button:hover {
      background: #1565c0;
    }

    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 1.5rem;
      margin-top: 2rem;
    }

    /* ANIMATIONS */
    @keyframes fadeInDown {
      from {opacity:0; transform: translateY(-30px);}
      to {opacity:1; transform: translateY(0);}
    }
    @keyframes fadeInUp {
      from {opacity:0; transform: translateY(30px);}
      to {opacity:1; transform: translateY(0);}
    }