* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f2f5f9;
  color: #333;
  line-height: 1.7;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #1b5e20, #43a047);
  padding: 18px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav h1 {
  font-size: 22px;
  color: #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  font-size: 14px;
}

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

/* ===== LAYOUT ===== */
.container {
  width: 92%;
  max-width: 1150px;
  margin: auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
  ),
  url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee") center/cover no-repeat;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  border-radius: 0 0 18px 18px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* ===== SECTIONS ===== */
.section {
  background: #fff;
  padding: 35px;
  margin: 35px 0;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.section h2 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #1b5e20;
}

.section p {
  margin-bottom: 12px;
  font-size: 15.5px;
}

/* ===== FORM ===== */
input, textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #43a047;
}

button {
  margin-top: 15px;
  padding: 12px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 18px 10px;
  margin-top: 50px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav div {
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}
.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: #fff;
}

.logo-icon svg {
  display: block;
}

