body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 16px;
    background-color: #f3f4f6;
  }
  .container {
    max-width: 797px;
    margin: 0 auto;
    padding: 20px;
  }
  h1 {
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card {
    flex: 1;
    min-width: calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .card-content {
    padding: 15px;
  }
  .card h2 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .card p {
    margin: 0;
    color: #4a5568;
  }
  .card:hover {
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .card {
      min-width: 100%;
    }
  }
  /* Search Box*/
  .search-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #FFDDDD; /* Light red background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 10px; /* Padding around the search input */
  }
  #productSearch {
    padding: 13px;
    width: 93%; /* Adjusted to take the full width of its container */
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
  }
  #dropdown {
    display: none;
    position: absolute;
    background-color: #ffffff; /* Changed to white for contrast */
    min-width: 160px;
    color: #000000; /* Changed to black for readability */
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    max-height: 120px;
    width: calc(100% - 20px); /* Adjusted to match the width of the input field */
    box-sizing: border-box;
    top: 100%;
    left: 0;
    border-radius: 0 0 10px 10px; /* Rounded corners at the bottom */
    margin-top: 10px; /* Space between input field and dropdown */
  }
  #dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  #dropdown a:hover {
    background-color: #f1f1f1;
  }
  /* Site Header Styles */
.site-header {
  text-align: center;
  padding: 20px;
  background-color: #f3f4f6;
}
.site-header h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
nav a {
  text-decoration: none;
  color: #4a5568;
  margin: 0 10px;
}
nav a:hover {
  text-decoration: underline;
}
/* Product Page Styles */
.product-container {
  max-width: 797px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-content h1 {
  font-size: 1.5rem;
  margin-top: 0;
  color: #105712
}

.product-content h2 {
  font-size: 1.3rem;
  margin-top: 0;
}

.product-content p {
  font-size: 19px;
  color: #4a5568;
}

/* Alternatives Section Styles */
.alternatives-container {
  margin-top: 40px;
}
.alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.alternative {
  flex: 1;
  min-width: calc(33.333% - 20px);
  background-color: #effff6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.alternative img {
  width: 100%;
  height: auto;
}
.alternatives-container h2 {
  font-size: 1.9rem;
  border-bottom: 1px solid #b0d2e7;
  margin-bottom: 17px;
  text-align: center;
}
.alternatives-container h3 {
  font-size: 1.3rem;
  margin: 10px 0;
  padding: 0 15px;
  text-align: center;
}
.alternative h4 {
  font-size: 1.5rem;
  margin: 10px 0;
  padding: 0 15px;
  text-align: center;
}
.alternative p {
  margin: 0;
  padding: 0 15px 15px;
  color: #4a5568;
}
.alternative:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .alternative {
    min-width: 100%;
  }
}
.share-this-container {
  max-width: 797px;
  margin: 20px auto;
  text-align: center;
  background-color: #e6f7ff; /* Light blue background */
  border-radius: 10px; /* Rounded edges */
  padding: 19px; /* Some padding inside the container */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for depth */
}
.share-this-container h3 {
  font-size: 1.3rem;
  margin-top: 10px;
}
.social-media-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}
.social-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.facebook {
  background-color: #1877F2;
}
.whatsapp {
  background-color: #25D366;
}
.twitter {
  background-color: #1DA1F2;
}
.email {
  background-color: #D44638;
}
.social-button:hover {
  opacity: 0.9;
}
@media (max-width: 468px) {
  .social-button {
    flex: 0 0 48%;
  }
}
.suggestion-box {
  max-width: 797px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f3f4f6;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.suggestion-box p {
  margin: 13px;
  font-size: 1rem;
}
.suggestion-box a {
  color: #3182ce;
  text-decoration: none;
}
.suggestion-box a:hover {
  text-decoration: underline;
}
.description-box {
  background: rgb(5,79,43);
  background: radial-gradient(circle, rgba(5,79,43,1) 0%, rgba(14,54,27,1) 84%, rgba(0,0,0,1) 100%);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}
.description-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.description-box p {
  font-size: 1rem;
  line-height: 1.6;
}
.highlight {
  background: linear-gradient(135deg, #FFFFFF, #FFDDDD);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.site-footer {
  text-align: center;
  margin-top: 37px;
  padding: 20px 0;
  background-color: #333;
  color: #fff;
  font-size: 0.9rem;
}
.site-footer p {
  margin: 0;
}
.site-header {
  background-color: lightblue;
  text-align: center;
  padding: 10px 0;
}
.site-name {
  font-size: 2rem;
  font-weight: bold;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(19,135,43,1) 35%, rgba(11,41,106,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  text-decoration: none;
}
.contributors-container {
  background-color: #f9f9f9;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
}
.contributors-container h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
.contributors-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  counter-reset: contributorCount;
}
.contributors-list li {
  position: relative;
  padding-left: 33px;
  margin-bottom: 17px;
  line-height: 19px;
}
.contributors-list li::before {
  content: counter(contributorCount);
  counter-increment: contributorCount;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4CAF50; /* Green background for the circle */
  color: #fff; /* White text color */
  text-align: center;
  line-height: 20px;
  font-weight: bold;
}
.contributors-list span {
  border-bottom: 1px solid #d3d3d3;
  display: inline-block;
  margin-bottom: 1px; /* Align the border with the text */
}
.error-container {
  text-align: center;
  padding: 50px;
}

.error-container h1 {
  font-size: 5rem;
  margin-bottom: 20px;
}

.error-container p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.button {
  padding: 10px 20px;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  background-color: #3498db;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #2980b9;
}
.card-title {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  /* Any other styles you had applied to .card h2 */
}
.more-products-title {
  text-align: center;
  font-size: 2rem; /* Adjust the size as needed */
  border-bottom: 2px solid #ccc; /* Adds a line below the text */
  padding-bottom: 10px; /* Adjust space between text and line */
  margin-bottom: 30px; /* Adds space below the title before the cards */
}
