/* 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 {
  background: #042637;
  text-align: center;
  padding: 13px 0;
}

.logo {
  width: 96px;
  height: 54px;
  object-fit: contain;
}

/* About Us */
.about {
  background: #F7FAFC;
  padding: 64px 0;
}

.about h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

.about p {
  max-width: 1056px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
}

/* Products */
.products {
  background-color: #F9F9F9;
  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(630px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 40px 37px;
  box-shadow: 0px 3px 20px 1px rgba(0,0,0,0.05);
}

.product-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Statistics Section */
.stats {
  text-align: center;
  padding: 64px 0;
}

.stats h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(302px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat {
  background: radial-gradient( 0% 0% at 50% 50%, rgba(216,232,240,0.4) 0%, #F9FBFD 100%);
  border-radius: 12px;
  border: 1px solid #FFFFFF;
  padding: 80px 36px 48px;
  text-align: center;
}

.stat img {
  margin-bottom: 28px;
}

.stat p {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
}

.order-faq{
    margin: auto;
    padding: 64px 0;
    background: linear-gradient( 180deg, #FFFFFF 0%, #F7FAFC 40%, #F7FAFC 100%);
}
.faq-title {
    font-weight: bold;
    font-size: 50px;
    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: 24px;
    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: #042637;
  color: #C2D0DE;
  text-align: center;
  padding: 64px 0;
}

.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;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-links li a{
  color: #C2D0DE;
}

/* 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;
  }

  /* 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 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: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card, .highlight-item, .stat {
    padding: 16px;
  }
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .highlight-item img {
    height: auto;
    max-height: 200px;
    margin-bottom: 16px;
  }

  .stat img {
    margin-bottom: 14px;
  }

  .stat p {
    font-size: 16px !important;
    line-height: inherit;
  }

  .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;
  }
}