body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e5be01;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #e5be01;
}
.hero {
  background: linear-gradient(135deg, #e5be01 0%, #006b3f 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  animation: fadeIn 1.2s;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.cta-btn {
  background: #e5be01;
  color: #006b3f;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 16px rgba(229,190,1,0.12);
}
.cta-btn:hover {
  background: #006b3f;
  color: #fff;
}
.features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 60px 0;
  flex-wrap: wrap;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1s;
}
.feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,107,63,0.13);
}
.about-section {
  max-width: 800px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 40px 32px;
  animation: fadeIn 1.2s;
}
.about-section h1 {
  color: #006b3f;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.about-list {
  margin: 24px 0 0 0;
  padding: 0 0 0 18px;
  color: #222;
}
.contact-section {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 40px 32px;
  animation: fadeIn 1.2s;
}
.contact-section h1 {
  color: #006b3f;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5be01;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}
.contact-form button {
  align-self: flex-start;
}
footer {
  background: #222;
  color: #fff;
  padding: 28px 0 18px 0;
  text-align: center;
  margin-top: 60px;
}
footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
