/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: url('https://assets.eatsafe.tech/images/farm.png') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

a {
  text-decoration: none;
  color: #2a7f62;
}

ul {
  list-style: none;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  height: 40px;
  position: absolute;
  top: 10px;
  left: 0;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

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

/* Hero Section */
.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
}

/* Content Sections */
.content {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a7f62;
}

.contact form {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  padding: 0.75rem 1.5rem;
  background-color: #2a7f62;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #256b52;
}

.email-link button {
  all: unset;
  background-color: #2a7f62;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.email-link button:hover {
  background-color: #256b52;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #777;
}