.bodyI {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f6f8;
      color: #333;
    }

    .containerI {
      max-width: 1100px;
      margin: auto;
      padding: 30px 15px;
    }
    .product-gridI {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }
    .cardI {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .cardI h3 {
      margin-top: 0;
      color: #0a2540;
    }
    .cardI p {
      font-size: 14px;
      line-height: 1.5;
    }
    .tagsI {
      font-size: 12px;
      margin: 10px 0;
      color: #555;
    }
    .btnI-groupI {
      margin-top: 15px;
      display: flex;
      gap: 10px;
    }
    .btnI {
      padding: 10px 14px;
      border-radius: 5px;
      font-size: 13px;
      text-decoration: none;
      color: #fff;
      text-align: center;
      background: #0a2540;
      flex: 1;
    }
    .btnI-app {
      background: #34a853;
    }

    .btnI-buy {
     background: #ff9900;
     color: #000;
     font-weight: 600;
     }

     body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f5f7fa;
      color: #333;
    }

    header, footer {
      background: #0a2540;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 30px;
      background: #fff;
    }



    ul {
      padding-left: 20px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    th, td {
      border: 1px solid #ddd;
      padding: 10px;
      text-align: left;
      vertical-align: top;
    }

    th {
      background: #f0f2f5;
    }

    /* Product image */
    .product-img {
      width: 100%;
      max-width: 720px;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
    }
        .product-img-appLogo {
      width: 50%;
      max-width: 720px;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
    }

    /* Buy button */
    .buy-btn {
      display: inline-block;
      margin: 20px 0;
      padding: 12px 22px;
      background: #ff9900;
      border: none;

      text-decoration: none;
      font-weight: 600;
      border-radius: 6px;
    }

    /* App Screens Row */
    .app-flow {
      margin-top: 40px;
    }

    .app-steps-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }

    .app-step {
      text-align: center;
    }

.app-step img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}


    .app-step h3 {
      font-size: 16px;
      margin: 10px 0 6px;
    }

    .app-step p {
      font-size: 14px;
      line-height: 1.5;
      margin: 0;
    }

    /* ---------- ACCORDION ---------- */
.accordion {
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  margin-top: 30px;
  overflow: hidden;
}

.accordion-header {
  background: #f0f2f5;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h2 {
  margin: 0;
  font-size: 18px;
  color: #0a2540;
}

.accordion-toggle {
  font-size: 22px;
  font-weight: bold;
  color: #0a2540;
}

/* IMPORTANT PART */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  background: #ffffff;
}

.accordion-content.open {
  max-height: none; /* or use a very large value like 5000px */
}

.accordion-content-inner {
  padding: 20px;
}



@media (max-width: 768px) {
  .app-steps-row {
    grid-template-columns: 1fr;
  }

  .accordion-content-inner {
    padding-bottom: 40px;
  }
}


/* ---------- POPUP OVERLAY ---------- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
}

/* ---------- POPUP BOX ---------- */
.popup-box {
  display: inline;
  background: #ffffff;
  width: 460px;
  max-width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* ---------- HEADINGS ---------- */
.popup-box h2 {
  margin: 0 0 15px;
  font-size: 20px;
  color: #0a2540;
}

.popup-box h3 {
  margin: 18px 0 10px;
  font-size: 16px;
  color: #0a2540;
}

/* ---------- LABELS ---------- */
.popup-box label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.popup-box label span {
  color: red;
}

/* ---------- INPUTS ---------- */
.popup-box input,
.popup-box textarea {
  width: 100%;
  height: 38px;
  padding: 8px 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  font-size: 14px;
  box-sizing: border-box;
}

.popup-box textarea {
  height: 70px;
  resize: none;
}

.popup-box input:focus,
.popup-box textarea:focus {
  outline: none;
  border-color: #0a84ff;
}

/* ---------- COUNTER ROW ---------- */
.counter {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.counter span {
  font-size: 14px;
  color: #333;
}

/* ---------- COUNTER BUTTONS ---------- */
.counter button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #e6e9ee;
  font-size: 18px;
  cursor: pointer;
}

.counter button:hover {
  background: #d0d5dd;
}

/* ---------- COUNT ---------- */
.counter-value {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
  color: #0a2540;
}

/* ---------- ACTION BUTTONS ---------- */
.popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.cancel-btn {
  background: #e4e7ec;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.submit-btn {
  background: #0a84ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.submit-btn:hover {
  background: #006be0;
}

.accordion-hub-advanced-settings {
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  margin-top: 30px;
  overflow: hidden;
  display: none;
}