
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}
header.header-with-image {
  position: relative;
  text-align: center;
  color: white;
}
.header-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  opacity: 0.8;
}
.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.header-text h1 {
  font-size: 5vw;
  margin: 0;
}
.header-text p {
  font-size: 2.5vw;
}
section {
  padding: 2em;
  text-align: center;
}
.our-grow-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 1em;
}
.our-grow-images img, .contact-image {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1em;
}
input[type="email"] {
  padding: 10px;
  width: 240px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
button {
  padding: 12px 20px;
  margin-left: 8px;
  border: none;
  background-color: #ff6600;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
button:hover {
  background-color: #ffa500;
  color: black;
}
@media screen and (max-width: 1024px) {
  .header-text h1 {
    font-size: 6vw;
  }
  .header-text p {
    font-size: 3vw;
  }
  .our-grow-images img, .contact-image {
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .header-text h1 {
    font-size: 7vw;
  }
  .header-text p {
    font-size: 4vw;
  }
}

.retailers {
  margin: 2em 0;
}
.retailers h2 {
  font-size: 24px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1em;
}
.retailers-list {
  list-style: none;
  padding: 0;
  text-align: center;
}
.retailers-list li {
  margin: 0.5em 0;
}
.retailers-list a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-decoration 0.3s;
}
.retailers-list a:hover {
  color: #ffa500;
  text-decoration: underline;
}
.retailers-list .no-link {
  color: #999;
  font-weight: bold;
}
