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

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

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

.logo {
  width: 677px;
  height: 42px;
  object-fit: contain;
}

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

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

.hidden-xs {
  display: block;
}
.hidden-lg {
  display: none;
}

/* About Us */
.about {
  padding: 64px 0 32px;
}

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

.about p {
  max-width: 1060px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 36px;
}

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

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

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

.products .intro {
  font-size: 18px;
  line-height: 28px;
  max-width: 1280px;
  margin: 0 auto 24px;
  text-align: left;
}

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

.product-card {
  background-color: #FFFFFF;
  padding: 32px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.product-card p {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 28px;
  margin-bottom: 16px;
}
.product-card p:last-child {
    margin-bottom: 0;
}

.product-desc {
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 28px;
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
}

/* Print Highlights */
.highlights {
  background-color: #fff;
  padding: 64px 0;
  text-align: center;
}

.highlights h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.highlight-description {
  font-size: 18px;
  max-width: 1280px;
  margin: 0 auto 24px;
  text-align: left;
}

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

.highlight-item {
  text-align: center;
}

.highlight-item img {
  width: 100%;
  height: 302px;
  object-fit: cover;
  margin-bottom: 32px;
}

.highlight-item h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 17px;
}

.highlight-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #555555;
  padding: 0 20px;
}

.br-desktop {
  display: inline;
}

.order-faq{
    background: #F9F9F9;
    margin: auto;
    padding: 64px 0;
}
.faq-title {
    font-weight: bold;
    font-size: 50px;
    line-height: 66px;
    color: #222222;
    text-align: center;
    padding-bottom: 40px;
}
.faq-desc {
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 24px;
    text-align: center;
    padding-bottom: 20px;
}
.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:100%;
}
.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;
}

/* Stats */
.stats {
  background: #FFC54A;
  text-align: left;
  padding: 64px 0;
}

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

.stats-card h3 {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 24px;
}

.stats-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.stats-card span {
  color: #6E00FF;
  font-weight: bold;
  font-size: 18px;
}

/* Footer */
.footer {
  background: #04111E;
  color: #C2D0DE;
  text-align: center;
  padding: 64px 0px 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: #C2D0DE;
}

/* privacy-policy */
.information {
    background-color: #F9F9F9;
    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;
}

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

  /* Header */
  .header {
    padding: 12px 0;
  }
  .logo {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

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

  .hidden-xs {
    display: none;
  }
  .hidden-lg {
    display: block;
  }

  /* Title uniformly reduced */
  h2, h3 {
    font-size: 18px !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 */
  .products, .highlights {
    padding: 40px 16px;
  }
  .products .intro,.product-desc,.highlight-description {
      font-size: 16px;
  }
  .product-grid, .highlight-grid, .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .product-grid {
    margin: 0 auto 10px;
  }
  .stats-grid {
    gap: 32px;
  }
  .stats-card h3 {
    font-size: 14px!important;
    margin-bottom: 12px!important;
  }
  .product-card, .highlight-item {
    padding: 16px;
  }
  .highlight-item img {
    height: auto;
    max-height: 200px;
    margin-bottom: 16px;
  }
  .highlight-item p {
      padding: 0px;
  }

  .br-desktop {
    display: none;
  }
  
  .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: 20px;
  }
  .faq-desc {
      font-weight: 400;
      font-size: 14px;
      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;
  }
}