/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header */
.header {
  text-align: center;
  padding: 12px 0;
}

.logo {
  width: 72px;
  height: 56px;
  object-fit: contain;
}

/* Banner */
.banner {
  width: 100%;
}

.banner-img {
  width: 100%;
  max-width: 1920px;
  height: 1000px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* About Us */
.about {
  background: #FAF9F7;
  padding: 40px 0 64px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 0px 48px 49px;
}

.about-text h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: left;
}

.about-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 12px;
  text-align: left;
}

.about-text .subtitle {
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 12px;
}

.about-text .subcontent {
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  line-height: 19px;
  text-align: left;
  margin-bottom: 8px;
}

.about-text p:last-of-type {
  margin-bottom: 24px;
}

.subcontent span {
  color: #0B7DF9;
}

.about-text .about-btn {
  background: #FF5D0A;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  padding: 12px 63px;
}

/* Products */
.products {
  background-color: #fff;
  padding: 64px 0;
}

.products h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card img {
  margin-bottom: 32px;
  width: 100%;
}

.product-card h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 16px;
  text-align: center;
}

.product-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  margin-bottom: 12px;
}

.product-card p:last-child {
  margin-bottom: 0;
}

.order-faq{
    margin: auto;
    padding: 64px 0;
    background: #FAF9F7;
}
.faq-title {
    font-weight: bold;
    font-size: 50px;
    line-height: 66px;
    color: #222222;
    text-align: center;
    padding-bottom: 40px;
}
.faq-grid {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-content {
    max-width: 1280px;
    margin-top: 20px;
    background: #FFFFFF;
    padding: 0px 20px 20px 16px;
    position: relative;
    overflow: auto;
    cursor: pointer;
}
.faq-mk{
    width:49%;
}
.faq-content h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: rgba(34, 34, 34, 1);
    text-align: left;
    float: left;
    margin-top: 20px;
}
.faq-arrow {
    float: right;
    margin-top: 20px;
}
.faq-msg {
    width: 100%;
    clear: both;
    display: none;
}
.faq-line2 {
    width: 100%;
    height: 1px;
    background: rgba(208, 215, 223, 1);
    margin-bottom: 15px;
}
.faq-msg p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #555;
}

/* Footer */
.footer {
  background: #0B7DF9;
  color: #C8DBEE;
  text-align: center;
  padding: 64px 446px 80px;
}

.footer h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  font-size: 14px;
}

.footer-links li a{
  color: #C8DBEE;
}

/* privacy-policy */
.information {
    background-color: #FAFCFD;
    padding: 64px 320px 80px;
    line-height: 36px;
}

.information h2 {
    font-size: 40px;
    margin-bottom: 48px;
    font-weight: bold;
    text-align: center;
}

.information p {
    font-size: 18px;
    text-align: left;
}

.information .subtitle {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

.information span {
  font-weight: bold;
}

.information ul {
  margin-left: 18px;
}

/* Responsive Design: Mobile and Tablet */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  .logo {
    width: 36px;
    height: auto;
  }

  .header {
    padding: 6px 0;
  }

  /* Banner */
  .banner-img {
    height: auto;
    max-height: 300px; /* Restricted height */
  }

  /* Title uniformly reduced */
  h2, h3 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  /* About Us */
  .about {
    padding: 40px 16px;
  }
  .about-content {
    flex-direction: column;
    padding: 24px 0 24px 16px;
  }

  .about-content img {
    width: 95%;
  }
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 8px;
  }

  /* Products & Highlights & Statis */
  .products, .highlights, .stats {
    padding: 40px 16px;
  }
  .product-grid, .highlight-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .product-card, .highlight-item, .stat {
    padding: 16px;
  }
  .highlight-item img {
    height: auto;
    max-height: 200px;
    margin-bottom: 16px;
  }

  .stat img {
    width: 10%;
  }

  .stat span {
    font-size: 16px !important;
  }

  .order-faq{
      padding:20px;
  }
  .faq-mk{
      width:100%;
  }
  .faq-content {
      position: relative;
      height: auto;
      padding: 0 10px;
      overflow: auto;
      margin-top: 15px;
  }
  .faq-content h2 {
      font-size: 14px!important;
      line-height: 22px;
      width: 85%;
      margin-top: 10px;
  }
  .faq-msg p {
      font-size: 14px;
      line-height: 22px;
  }
  .faq-arrow {
      width: 15px;
      margin-right: 0px;
      margin-top: 15px;
  }
  .faq-title {
      font-weight: bold;
      font-size: 20px;
      color: #222222;
      text-align: center;
      padding-bottom: 10px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px !important;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  .footer-links li {
    margin: 0;
  }

  /* Force all containers to fill the screen width */
  .about, .products, .highlights, .stats, .footer {
    width: 100%;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .information {
    padding: 40px 16px;
    line-height: 1.8;
  }

  .information h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .information p {
    font-size: 15px;
  }

  .information .subtitle {
    font-size: 18px;
  }
}