body {
  margin: 0;
  padding: 0;
  background-color: #faf3dd;
  font-family: "IBM Plex Sans", sans-serif;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #4a7c59;
  padding: 15px;
}
nav p {
  font-size: 1.5em;
  padding-left: 30px;
  margin: 0;
}
nav .icons {
  display: flex;
  gap: 15px;
}
nav .icons button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

article {
  color: #4a7c59;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 70px 45px 0;
}
article .impact-section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-top: 50px;
  gap: 25px;
}
article h1 {
  font-size: 3em;
  margin: 0;
}
article p {
  font-size: 1.5em;
}
article button {
  width: 12vw;
  min-width: 150px;
  padding: 20px;
  background-color: #68b0ab;
  border-radius: 35px;
  color: white;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
article button:hover {
  transform: scale(1.1);
}
article .image-section img {
  width: 25vw;
  min-width: 300px;
  border-radius: 19px;
}

.product-section {
  padding: 60px;
}
.product-section h2 {
  color: #4a7c59;
  font-size: 2em;
}
.product-section .healthcare, .product-section .furniture {
  padding-bottom: 60px;
}
.product-section .healthcare h2, .product-section .furniture h2 {
  font-weight: 300;
  padding-bottom: 60px;
}
.product-section .healthcare .card-section, .product-section .furniture .card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}
.product-section .healthcare .product-card, .product-section .furniture .product-card {
  width: 280px;
  height: 380px;
  background-color: #c8d5b9;
  color: #4a7c59;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-section .healthcare .product-card .icon, .product-section .furniture .product-card .icon {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 12px;
  height: 28px;
}
.product-section .healthcare .product-card .icon svg, .product-section .furniture .product-card .icon svg {
  width: 28px;
  height: 28px;
}
.product-section .healthcare .product-card .product-image, .product-section .furniture .product-card .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  height: 200px;
}
.product-section .healthcare .product-card .product-image img, .product-section .furniture .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.product-section .healthcare .product-card .product-content, .product-section .furniture .product-card .product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-section .healthcare .product-card h3, .product-section .furniture .product-card h3 {
  margin: 10px 0 8px;
  font-size: 1.2em;
  font-weight: 600;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-section .healthcare .product-card p, .product-section .furniture .product-card p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-section .healthcare .product-card:hover, .product-section .furniture .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-section .furniture .product-card {
  background-color: #8fc0a9;
  color: white;
}

.info-section {
  padding: 60px;
}
.info-section .about-us {
  margin-bottom: 80px;
}
.info-section .about-us h2 {
  color: #4a7c59;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 60px;
}
.info-section .about-us .mission-section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
}
.info-section .about-us .mission-section .earth,
.info-section .about-us .mission-section .innovation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #4a7c59;
  text-align: center;
  max-width: 300px;
}
.info-section .about-us .mission-section .earth img,
.info-section .about-us .mission-section .innovation img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.info-section .about-us .mission-section .earth p,
.info-section .about-us .mission-section .innovation p {
  font-size: 1.5em;
  margin: 0;
}
.info-section .gallery {
  margin-bottom: 80px;
}
.info-section .gallery h2 {
  color: #4a7c59;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 60px;
}
.info-section .gallery .gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.info-section .gallery .gallery-images img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.info-section .gallery .gallery-images img:hover {
  transform: scale(1.05);
}
.info-section .location {
  color: #4a7c59;
}
.info-section .location h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 60px;
}
.info-section .location .map {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.info-section .location .map img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}
.info-section .location h3, .info-section .location p {
  font-size: 1.5em;
}
.info-section .location h3 {
  margin-bottom: 10px;
}
.info-section .location p {
  margin: 0;
}

footer {
  background-color: #68b0ab;
  width: 100%;
  padding: 40px;
  color: white;
  text-align: center;
  margin-top: 60px;
}
footer h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
}
footer p {
  margin: 5px 0;
  font-size: 1em;
}
footer .social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}
footer .social-media img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
footer .social-media img:hover {
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  article {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 40px;
  }
  article .image-section img {
    width: 80vw;
    max-width: 500px;
  }
  .product-section .healthcare .card-section, .product-section .furniture .card-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
  .info-section .about-us .mission-section {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  nav p {
    margin-bottom: 10px;
    padding-left: 0;
  }
  nav .icons {
    align-self: flex-end;
  }
  article {
    padding: 30px 20px;
  }
  article h1 {
    font-size: 2em;
  }
  article button {
    width: auto;
    min-width: 120px;
    padding: 15px 25px;
  }
  article .image-section img {
    width: 90vw;
  }
  .product-section {
    padding: 40px 20px;
  }
  .product-section .healthcare .card-section, .product-section .furniture .card-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-section {
    padding: 40px 20px;
  }
  .info-section .gallery .gallery-images {
    grid-template-columns: 1fr;
  }
  .info-section .gallery .gallery-images img {
    height: 250px;
  }
  footer {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
  }
  nav p {
    font-size: 1.2em;
  }
  article {
    padding: 20px 15px;
  }
  article h1 {
    font-size: 1.8em;
  }
  article p {
    font-size: 1.2em;
  }
  .product-section,
  .info-section {
    padding: 30px 15px;
  }
  .product-section h2,
  .info-section h2 {
    font-size: 1.5em;
  }
  footer {
    padding: 30px 15px;
  }
  footer .social-media {
    flex-direction: row;
    gap: 15px;
  }
}/*# sourceMappingURL=main.css.map */