body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #f4f6f4;
  color: #2c2c2c;
}

.logo {
  width: 100px;
  height: 100px;
  background: white;
  padding: 4px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 0 auto 20px;
  display: block;
}

header {
  background: linear-gradient(to right, #2f6b2f, #4f8f4f);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

nav {
  background: #1f4d1f;
  padding: 12px;
  text-align: center;
  position: sticky;
  top: 0;
}

nav a {
  color: white;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #2f6b2f;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 10px 0;
  font-size: 1.05em;
}

footer {
  background: #1f4d1f;
  color: white;
  text-align: center;
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  background: #e8eee8;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #2f6b2f;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-note {
  text-align: center;
  margin-top: 25px;
  font-style: italic;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2f6b2f;
}

.contact-form button {
  background: #2f6b2f;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #245724;
}

@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 16px;
  }
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.buyer-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.buyer-card h3 {
  color: #2f6b2f;
  margin-bottom: 10px;
}

@media (max-width: 768px) {

  header {
    padding: 40px 15px;
  }

  header h1 {
    font-size: 28px;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
    font-size: 14px;
  }

  section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 22px;
  }

  .buyer-card {
    padding: 20px;
  }

  .gallery-item {
    height: 160px;
  }

}
