/* style.css */
:root {
  --bg: #f2fff4;
  --accent: #2d5e3f;
  --text: #2c2c2c;
  --cta: #4caf50;
  --white: #fff;
  --border-radius: 6px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header.with-background {
  background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

header .overlay {
  background: rgba(45, 94, 63, 0.75);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: inline-block;
}

h1 {
  font-size: 2.8rem;
  margin: 0;
}

h2 {
  color: var(--accent);
  text-align: center;
  margin: 3rem 0 1rem;
}

ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: auto;
}

ul li {
  background: var(--white);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 2rem;
  text-align: center;
}

.cta {
  display: inline-block;
  background-color: var(--cta);
  color: var(--white);
  padding: 1rem 2rem;
  margin-top: 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #3e8e41;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, select, button {
  padding: 0.8rem;
  border-radius: var(--border-radius);
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

footer {
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

footer img {
  margin-top: 1rem;
  height: 100px;
}
