
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: white;
      text-align: center;
      color: #000;
    }


    .hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
      background: #000;
    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      color: white;
    }

    .hero-content h1 {
      font-size: 48px;
      margin: 0;
      font-weight: bold;
    }

    .hero-content h2 {
      font-size: 36px;
      margin: 10px 0;
    }

    .hero-content p {
      font-size: 16px;
      margin: 20px 0;
    }

    .store-buttons img {
      width: 150px;
      margin: 10px;
    }


    .food-section {
      padding: 40px 20px;
    }

    .food-images {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 30px;
    }

    .food-img {
      width: 100px;
      height: auto;
    }

    .title {
      font-size: 36px;
      color: #e53950;
      margin-bottom: 10px;
    }

    .description {
      font-size: 18px;
      color: #555;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 20px;
      background: #f8f8f8;
      border-radius: 20px;
      max-width: 700px;
      margin: 0 auto;
    }

    .stat-box {
      min-width: 150px;
    }

    .stat-box h2 {
      font-size: 24px;
      color: #222;
      margin-bottom: 5px;
    }

    .stat-box p {
      color: #777;
      font-size: 14px;
    }


    .container {
      padding: 40px 20px;
      background: linear-gradient(#ffeeee, #ffffff);
    }

    .heading {
      font-size: 36px;
      color: #e53950;
      margin-bottom: 10px;
    }

    .subheading {
      font-size: 18px;
      color: #555;
      margin-bottom: 40px;
    }

    .features {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
    }

    .left, .right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .feature {
      background: white;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 120px;
      font-size: 16px;
      line-height: 1.5;
    }

    .center .phone {
      background: white;
      padding: 30px 20px;
      border-radius: 25px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      font-size: 20px;
      width: 160px;
      height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .center span {
      font-size: 16px;
      margin-top: 10px;
    }


    .logo-container {
      margin: 30px 0;
    }

    .logo-img {
      width: 120px;
      height: auto;
    }

    .card-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .card {
      width: 160px;
      padding: 20px;
      background: #f5f5f5;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .card-img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }


    .download-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff5f5;
      border-radius: 25px;
      padding: 40px 60px;
      width: 1000px;
      margin: 60px auto;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .left {
      flex: 1;
    }

    .left h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #000;
    }

    .left p {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .store-btn {
      height: 45px;
    }

    .right {
      text-align: center;
    }

    .qr-text {
      font-size: 15px;
      margin-bottom: 10px;
      color: #555;
      line-height: 1.4;
    }

    .qr-img {
      width: 120px;
      border-radius: 12px;
      border: 2px solid #f9caca;
      padding: 5px;
    }

   
    .footer {
      padding: 50px 100px 20px 100px;
      background-color: #000;
      color: #fff;
      width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .footer-column {
      width: 180px;
    }

    .footer-column h4 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .footer-column a {
      display: block;
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .footer-column a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .social-icons span {
      display: inline-block;
      width: 28px;
      height: 28px;
      background-color: #fff;
      color: #000;
      text-align: center;
      line-height: 28px;
      border-radius: 50%;
      font-size: 14px;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 15px;
      font-size: 12px;
      color: #888;
    }