/* 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: 1280px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 40px;
  padding-bottom: 32px;
}

/* Products */
.products {
  background-color: #FCFBFB;
  text-align: center;
  padding: 60px 0;
}

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

.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: linear-gradient( 135deg, #FFFFFF 0%, #FFFFFF 59%, #FBF8F6 100%);
  border-radius: 10px 10px 10px 10px;
  border: 4px solid #FFFFFF;
  padding: 40px 20px 48px;
}

.product-card h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.product-card img {

    padding-bottom: 32px;
}
.product-card p {
  font-size: 14px;
  color: #241917;
  line-height: 28px;
}

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

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

.highlight-description {
  font-size: 18px;
  max-width: 1280px;
  margin: 0 auto 32px;
}

.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: left;
}

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

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

.highlight-item p {
  font-size: 14px;
}
.highlight-item ul{
    padding-left: 20px;
}
.highlight-item ul li{
  font-size: 14px;
color: #555555;
line-height: 22px;
    margin-bottom: 10px;
}

/* Statistics Section */
.stats {
  background-color: #FCFBFB;
  padding: 64px 0px 80px;
  text-align: center;
}
.stats h2{
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
}
.stat-box{
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
}
.stat{
    width: 50%;
    margin: 0 auto;
    padding-left: 75px;
    display: flex;
    margin-bottom: 40px;
}
.stat h4 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 32px;
}

.stat p {
    font-weight: bold;
    font-size: 20px;
    color: #241917;
    line-height: 36px;
    margin-left: 20px;
}

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

.start-input{
    width: 340px;
    height: 56px;
    background: #B95441;
    border-radius: 10px 10px 10px 10px;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    border: 0;
    margin-top: 20px;
}

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

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

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

.footer-links li a{
  color: #9C4839;
font-weight: bold;
text-decoration: none;
}

/* 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 {
    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;
  }
.product-card h3 {
    font-size: 18px;
}
  /* Statistics */
  .stats {
    padding: 40px 16px !important;
    
  }
  .stat{
    width: 100%;
    padding-left: 15px;
    margin-bottom: 25px;
    align-items: center;
  }
  .stat h4 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .stat p {
    font-size: 15px;
    margin-left: 10px;
    text-align: left;
    line-height: 20px;
  }
  .start-input {
    width: 80%;
    height: 40px;
    font-size: 16px;
  }
  .stat img{
      width: 40px;
      height: 40px;
  }
  /* 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;
  }
}