  body {
      font-family: "Roboto", Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.5;
      color: #000;
    }
    h1, h2, h3 {
      margin: 0;
    }

    /* Utilities */
    .container {
      max-width: 1300px;
      margin: 0 auto;
      margin-top: 20px;
      padding: 0 16px;
    }
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .flex-row { flex-direction: row; }
    .justify-between { justify-content: space-between; }
    .justify-center { justify-content: center; }
    .justify-start { justify-content: flex-start; }
    .items-center { align-items: center; }
    .gap-3 { gap: 12px; }
    .gap-4 { gap: 16px; }
    .gap-5 { gap: 20px; }
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .uppercase { text-transform: uppercase; }
    .font-bold { font-weight: 700; }
    .mt-5 { margin-top: 20px; }
    .mb-10 { margin-bottom: 40px; }
    .my-10 { margin: 40px 0; }
    .pt-5 { padding-top: 20px; }
    .pb-10 { padding-bottom: 40px; }

    /* Header */
    header {
      padding: 16px;
        flex-direction: column !important;
    }
    header img.logo {
      height: 60px;
      object-fit: cover;
    }
    header .contact-info {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }
    header .contact-info div {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
    }
    header .contact-info img {
      width: 24px;
      height: 24px;
    }

    /* Banner */
    .banner {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      padding: 40px 16px;
    }
    .banner img.phone {
      width: 250px;
    }
    .banner h1 {
      font-size: 40px;
      font-weight: 700;
    }
    .banner h1 span {
      background: #F9ED32;
      padding: 0 8px;
    }
    .banner p {
      margin-top: 16px;
      font-size: 18px;
    }
    .banner .stores {
      margin-top: 24px;
      display: flex;
      gap: 16px;
      justify-content: start;
    }
    .banner .stores img {
      height: 48px;
      object-fit: none;
      border-radius: 8px;
    }

    /* Features */
    .features {
      background: #FFD666;
      padding: 40px 16px;
      text-align: center;
    }
    .features h2 {
      font-size: 32px;
      font-weight: 700;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 20px;
      margin-top: 32px;
    }
    .feature-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    }
    .feature-card .image {
      background: #EEF1F7;
      padding: 24px;
      display: flex;
      justify-content: center;
    }
    .feature-card .image img {
      height: 90px;
      object-fit: cover;
    }
    .feature-card .content {
      padding: 20px;
      text-align: left;
    }
    .feature-card h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }
    .feature-card ul {
      padding-left: 20px;
      margin: 0;
    }

    /* Contact */
    .contact {
      margin: 40px auto;
      padding: 0 16px;
      text-align: center;
    }
    .contact h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 32px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
      gap: 20px;
    }
    .contact-card {
      background: #fff;
      padding: 24px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(156,160,172,0.4);
    }
    .contact-card img {
      width: 48px;
      height: 48px;
    }
    .contact-card p {
      margin: 8px 0;
    }

    /* Download Section */
    .download {
      background: #FFFFE6;
      padding: 40px 16px;
      text-align: center;
    }
    .download h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .download .content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .download img.phone {
      width: 250px;
    }
    .download .stores img {
      height: 48px;
      object-fit: none;
      border-radius: 8px;
    }

    /* Footer */
    footer {
      background: #FFF385;
      padding: 40px 16px;
      text-align: left;
    }
    footer h2 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    footer p {
      margin: 6px 0;
      font-size: 16px;
    }
    footer .copyright {
      margin-top: 20px;
      font-size: 14px;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .banner { flex-direction: row; justify-content: center; }
      .download .content { flex-direction: row; justify-content: center; }
      header {
        flex-direction: row !important;
      }
    }