
body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0; padding: 0;
  background: linear-gradient(135deg, #e6f5eb 0%, #fff 100%);
  color: #23424a;
  min-height: 100vh;
}
.main-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(40, 167, 69, 0.05);
  position: sticky;
  top: 0; z-index: 20;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #28a745;
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: -1px;
}
.main-nav a {
  margin: 0 16px;
  color: #23424a;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover {
  color: #28a745;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50vh;
  padding: 50px 0 30px 0;
  background: radial-gradient(circle at 60% 30%, #28a74522 0, transparent 80%);
  gap: 32px;
}
.hero-left {
  flex: 1;
}
.hero-right img {
  max-width: 320px;
  width: 100%;
}
.hero h2 {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #28a745;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.btn-primary {
  background: linear-gradient(90deg, #28a745 60%, #44e3a2 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 36px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(40,167,69,0.14);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #218838 60%, #24c87b 100%);
  transform: translateY(-2px) scale(1.03);
}
.newsletter-signup, .newsletter-signup-footer {
  display: flex;
  margin: 22px 0 0 0;
  gap: 6px;
}
.newsletter-signup input, .newsletter-signup-footer input {
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid #d0e3d6;
  font-size: 1rem;
  flex: 1;
}
.newsletter-signup button, .newsletter-signup-footer button {
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.newsletter-signup button:hover, .newsletter-signup-footer button:hover {
  background: #218838;
}
.features {
  display: flex;
  gap: 24px;
  margin: 50px 0;
  justify-content: center;
}
.feature-card {
  background: #fff;
  padding: 32px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(40,167,69,0.08);
  text-align: center;
  transition: transform .14s, box-shadow .18s;
  width: 100%;
  max-width: 320px;
}
.feature-card img {
  margin-bottom: 15px;
}
.feature-card h3 {
  color: #28a745;
  margin-bottom: 10px;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 20px rgba(40,167,69,0.15);
}
.testimonials {
  background: #28a74508;
  padding: 40px 0 30px 0;
  text-align: center;
}
.testimonials h3 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  font-weight: 700;
  color: #218838;
}
.testimonial-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,167,69,0.08);
  padding: 28px 24px;
  max-width: 320px;
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-size: .98rem;
  color: #28a745;
}
footer {
  background: #23424a;
  color: #fff;
  padding: 28px 0 18px 0;
  text-align: center;
  margin-top: 50px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.social-icons a {
  margin: 0 10px;
  display: inline-block;
}
.social-icons img {
  vertical-align: middle;
  filter: grayscale(.2) brightness(1.5);
  transition: filter .18s, transform .18s;
}
.social-icons img:hover {
  filter: grayscale(0) brightness(1.2);
  transform: scale(1.12);
}
.cookie-consent {
  position: fixed; bottom: 30px; left: 0; right: 0;
  background: #23424a;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-size: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(40,167,69,.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  animation: fadein .8s;
}
.cookie-consent a { color: #44e3a2; text-decoration: underline; }
.cookie-consent button {
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background .18s;
}
.cookie-consent button:hover { background: #218838; }
@keyframes fadein { from {opacity:0;} to {opacity:1;} }
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; gap: 10px; }
  .features { flex-direction: column; }
  .footer-row { flex-direction: column; gap: 10px; }
}
