* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6faf7;
  color: #1a2b1b;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 24px 16px;
}

.top-bar {
  background: #1a2b1b;
  color: #eafbe6;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header {
  background: #fff;
  border-bottom: 1.5px solid #e0f2e9;
  box-shadow: 0 2px 12px rgba(30,60,40,0.04);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 170px;
  height: auto;
  margin-right: 0;
}

.brand-text h1 {
  font-size: 1.7rem;
  margin: 0 0 2px 0;
  font-weight: 700;
  color: #1a2b1b;
}
.brand-text .subtitle {
  font-size: 1.05rem;
  color: #3e5c3e;
  opacity: 0.8;
  margin: 0;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1a2b1b;
  cursor: pointer;
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}
.primary-nav a {
  color: #1a2b1b;
  text-decoration: none;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
.primary-nav a:hover, .primary-nav .btn:hover {
  background: #e0f2e9;
  color: #1f7a3a;
}
.primary-nav .btn {
  background: #1f7a3a;
  color: #fff;
  border-radius: 18px;
  padding: 7px 18px;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
  align-self: center;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

@media (max-width: 900px) {
  .header-grid { flex-direction: column; align-items: flex-start; gap: 10px; }
  .primary-nav { width: 100%; flex-direction: column; align-items: flex-start; }
  .primary-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .primary-nav a { display: block; margin: 0; width: 100%; box-sizing: border-box; }
  .nav-toggle { display: block; }
  .primary-nav .btn { width: 100%; margin-left: 0; margin-top: 8px; }
}

.hero {
  background: #e0f2e9;
  padding: 60px 0 40px 0;
  text-align: center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  margin-bottom: 32px;
}
.hero-inner h2 {
  font-size: 2.2rem;
  color: #1f7a3a;
  margin-bottom: 12px;
}
.hero-inner p {
  font-size: 1.2rem;
  color: #2d3d2d;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn {
  background: #1f7a3a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 22px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(31,122,58,0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn.outline {
  background: transparent;
  color: #1f7a3a;
  border: 2px solid #1f7a3a;
}
.btn:hover {
  background: #145a28;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn.outline:hover {
  background: #e0f2e9;
  color: #145a28;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(31,122,58,0.07);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 32px;
  margin-top: 24px;
}
.service i {
  font-size: 38px;
  color: #1f7a3a;
  margin-bottom: 8px;
}
.service h3 {
  margin-top: 0;
  color: #1a2b1b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px,1fr));
  gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 18px;
}
.step {
  background: #e0f2e9;
  border-radius: 14px;
  padding: 22px 10px 18px 10px;
  box-shadow: 0 2px 8px rgba(31,122,58,0.04);
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  text-align: center;
}
.step p {
  margin: 0 auto;
  color: #1a2b1b;
  font-weight: 500;
}
.step:hover {
  box-shadow: 0 6px 18px rgba(31,122,58,0.10);
}

.cta.contact-cta {
  background: #1f7a3a;
  color: #fff;
  text-align: left;
  padding: 44px 32px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-cta a {
  color: #fff;
}
.contact-cta a.btn.outline {
  color: #1f7a3a;
  background: #fff;
  border: none;
}
.contact-cta a.btn.outline:hover {
  background: #e0f2e9;
  color: #145a28;
}

footer {
  background: #1a2b1b;
  color: #eafbe6;
  text-align: center;
  padding: 22px 0;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 32px;
}

@media (max-width: 700px) {
  .wrapper { padding: 8px; }
  .card { padding: 12px 4px; border-radius: 10px; }
  .cta.contact-cta { padding: 12px 4px; border-radius: 12px; }
  .contact-grid { flex-direction: column; gap: 14px; }
  .hero { padding: 24px 0 10px 0; border-radius: 0; margin-bottom: 18px; }
  .hero-inner h2 { font-size: 1.2rem; }
  .hero-inner p { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn, .btn.outline { width: 100%; padding: 10px 0; font-size: 1rem; }
  .offer-list { flex-direction: column; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .step { min-height: 60px; padding: 12px 4px; border-radius: 8px; }
  .blog-card { padding: 12px 6px; border-radius: 10px; }
}

@media (max-width: 500px) {
  .brand-text h1 { font-size: 1.1rem; }
  .brand-text .subtitle { font-size: 0.9rem; }
  .logo { width: 90px; }
  .site-header { padding: 0; }
  .header-grid { gap: 4px; }
  .top-bar { font-size: 13px; }
  .card { padding: 6px 2px; }
  .cta.contact-cta { padding: 8px 2px; }
  .btn, .btn.outline { font-size: 0.95rem; }
}

html { scroll-behavior: smooth; }

.blog-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(31,122,58,0.08);
  transition: box-shadow 0.2s;
}
.blog-card h3 {
  margin-top: 0;
  color: #1f7a3a;
  font-size: 1.3rem;
  font-weight: 700;
}
.blog-card img {
  max-width: 100%;
  border-radius: 14px;
  margin: 18px 0;
  display: block;
}
.blog-card .btn {
  margin-top: 14px;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(31,122,58,0.13);
}