/* 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: #fff;
  text-align: center;
  padding: 16px 0;
}

.logo {
  width: 549px;
  height: 48px;
  object-fit: contain;
}

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

.banner-img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* About Us */
.about {
  background-color: #fff;
  text-align: center;
  padding: 64px 0 80px 0;
}

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

.about p {
  max-width: 1078px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 40px;;
}

/* Products */
.products {
  background-color: #FAFCFD;
  text-align: center;
  padding: 60px 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: #ECF1F3;
  padding: 24px 20px 32px;
}

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

.product-card p {
  font-size: 16px;
}

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

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

.highlight-description {
  font-size: 18px;
  max-width: 800px;
  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: 28px;
}

.highlight-item h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 16px;
}

.highlight-item p {
  font-size: 14px;
}

/* Statistics Section */
.stats {
  background-color: #FAFCFD;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(199px, 1fr));
  text-align: center;
  padding: 64px 320px 80px;
  gap: 67px;
}

.stat h4 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 32px;
}

.stat p {
  font-weight: bold;
  color: #076CA6;
  font-size: 36px;
}

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

/* 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;
}

/* article */
.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;
}

/* Responsive Design: Mobile and Tablet */
/* 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, 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 */
  .products, .highlights {
    padding: 40px 16px;
  }
  .product-grid, .highlight-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .product-card, .highlight-item {
    padding: 16px;
  }
  .highlight-item img {
    height: auto;
    max-height: 200px;
    margin-bottom: 16px;
  }

  /* Statistics */
  .stats {
    padding: 40px 16px !important;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat h4 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .stat p {
    font-size: 24px;
  }

  /* 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;
  }
}