/* 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-color: #04111E;
  text-align: center;
  padding: 18px 0 20px;
}

.logo {
  width: 568px;
  height: 42px;
  object-fit: contain;
}

/* Banner */
.banner {
  width: 100%;
}

.banner-img {
  width: 100%;
  max-width: 1919px;
  height: 822px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* About Us */
.about {
  background-color: #fff;
  text-align: center;
  padding: 64px 0;
}

.about h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.about .subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.about p {
  max-width: 1068px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
}

.about .cate {
  color: #3586C8;
}

/* Products */
.products {
  background-color: #F9F9F9;
  text-align: center;
  padding: 64px 0;
}

.products h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.products .intro {
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  background-color: #FFFFFF;
  padding: 40px 20px 32px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 16px;
}

.product-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.product-card img {
  margin-bottom: 32px;
}

/* Print Highlights */
.highlights {
  background-color: #fff;
  padding: 64px 320px 64px;
  text-align: center;
}

.highlights h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.highlight-description {
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 48px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 30px;
  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;
  margin-bottom: 17px;
}

.highlight-item p {
  font-size: 14px;
}

/* Stats */
.stats {
  background-color: #F9F9F9;
  text-align: center;
  padding: 64px 0;
}

.stats h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.stats .intro {
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.stats-card {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.stats-card h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 21px;
}

.stats-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.stats-card img {
  margin-bottom: 28px;
}

.stats-card span {
  color: #3586C8;
  font-weight: bold;
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: #2C3640;
  color: #fff;
  text-align: center;
  padding: 64px 446px 80px;
}

.footer h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  font-size: 14px;
}

.footer-links li a{
  color: #fff;
}

/* privacy-policy */
.information {
    background-color: #FFFFFF;
    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 span {
    font-weight: bold;
}

/* Responsive Design: Mobile and Tablet */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Header */
  .header {
    padding: 12px 0;
  }
  .logo {
    width: 80%;
    height: auto;
    max-width: 300px;
  }

  /* Banner */
  .banner-img {
    height: auto;
    max-height: 300px; /* Restricted height */
  }

  /* Title uniformly reduced */
  h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  h3 {
    font-size: 20px !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, .stats {
    padding: 40px 16px;
  }
  .product-grid, .highlight-grid, .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .product-card, .highlight-item, .stats-card {
    padding: 50px 16px 16px;
  }
  .highlight-item img {
    height: auto;
    max-height: 200px;
    margin-bottom: 16px;
  }

  /* 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;
  }
}