body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f5f5;
  color: #2c3e50;
}

header {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 25px;
}
header h1 {
  margin: 0;
  font-size: 30px;
}
.blink {
  animation: blink 1s infinite;
  color: #fdd835;
}
@keyframes blink {
  50% { opacity: 0.5; }
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #a5d6a7;
  gap: 20px;
  padding: 15px;
}
nav a {
  background: white;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #2e7d32;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
nav a:hover {
  background: #c8e6c9;
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  animation: fadeIn 2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1100px;
  margin: 50px auto;
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}
.container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.container ul {
  margin: 20px 0;
  padding-left: 20px;
}
.container li {
  margin: 6px 0;
}

.contact {
  background: #e8f5e9;
  padding: 40px 20px;
  text-align: center;
}
.contact h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.contact p {
  margin: 10px auto;
  max-width: 700px;
}

footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}