body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fdfdfc;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

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

.logo-jv {
  font-weight: 700;
  font-size: 24px;
  color: #348e1d;
}

.logo-text {
  font-weight: 600;
  margin-left: 6px;
}

.hero {
  padding: 120px 0;
  text-align: center;
}

.hero span {
  color: #348e1d;
}

.section {
  padding: 80px 0;
}

.dark {
  background: #111;
  color: white;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.dark .card {
  background: #222;
  border-color: #333;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  margin-bottom: 20px;
}

.checkbox-group {
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: #348e1d;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Additional semantic & responsive utilities used after removing Tailwind */
.glass { background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.logo-mark { width: 40px; height: 40px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.logo-jv { font-weight: 700; font-size: 22px; color: #348e1d; }
.logo-text { font-weight: 600; color: #999587; }

.nav-links { display: none; gap: 24px; align-items: center; }
.nav-link { color: #222; font-weight: 600; text-decoration: none; }
.nav-link:hover { color: #348e1d; }

.nav-toggle { background: transparent; border: none; display: flex; align-items: center; padding: 8px; }
.nav-toggle .hamburger { width: 22px; height: 2px; background: #222; position: relative; display: inline-block; }
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #222; }
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }
.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open .hamburger::after { transform: rotate(-45deg); top: 0; }

.nav-links.open { display: flex; flex-direction: column; gap: 12px; position: absolute; right: 16px; top: 68px; background: rgba(255,255,255,0.98); padding: 12px; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Contact form styles */
.contact-form { max-width: 820px; margin-top: 18px; }
.contact-form .row { display:flex; gap:12px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { width:100%; padding:12px; border-radius:8px; border:1px solid #ddd; font-family:inherit; }
.contact-form textarea { min-height:140px; resize:vertical; }
.form-message { margin-left: 12px; color:#fff; align-self:center; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex !important; }
  .nav-links.open { position: static; flex-direction: row; background: transparent; box-shadow: none; }
  .contact-form .row { gap:20px; }
}

.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-title { font-size: 44px; line-height: 1.05; margin: 0 0 18px; font-weight: 800; }
.hero-sub { color: #556; font-size: 18px; margin-bottom: 22px; }
.accent { color: #348e1d; }
.icon-inline { display: inline-block; vertical-align: middle; margin-left: 8px; }

.section { padding: 80px 0; }
.section-header { margin-bottom: 32px; }
.eyebrow { text-transform: uppercase; font-weight: 700; color: #999587; letter-spacing: .2em; margin: 0 0 8px; }
.section-title { font-size: 32px; margin: 0; }

.card { background: white; padding: 30px; border-radius: 20px; border: 1px solid #eee; transition: box-shadow .18s ease, transform .18s ease; }
.card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); transform: translateY(-4px); }
.card h4 { margin-top: 12px; margin-bottom: 8px; font-size: 18px; }
.card p { color: #666; margin: 0; }
.icon-circle { width: 56px; height: 56px; border-radius: 12px; background: #f0f9f1; color: #348e1d; display:flex; align-items:center; justify-content:center; margin-bottom: 18px; }

.two-col { display:block; }
.section-heading { font-size: 32px; margin-bottom: 18px; }
.steps .step { display:flex; gap: 16px; align-items:flex-start; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: #348e1d; color: #fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.site-footer { padding: 60px 0; background: #0b0b0b; color: #fff; border-top-left-radius: 3rem; border-top-right-radius: 3rem; }
.footer-title { font-size: 32px; margin-bottom: 16px; }
.contact-row { display:flex; gap: 12px; align-items:center; margin-bottom: 28px; }
.contact-icon { width:48px; height:48px; border-radius:50%; border:1px solid #222; display:flex; align-items:center; justify-content:center; }
.contact-email { font-weight:700; font-size:18px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid rgba(255,255,255,0.04); padding-top:20px; margin-top:20px; }
.brand-inline { display:flex; gap:8px; align-items:center; }
.muted { color: #888; }

/* Responsive breakpoints */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero-title { font-size: 56px; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .container { max-width: 1200px; }
}

footer {
  padding: 40px 0;
  text-align: center;
  background: #000;
  color: #888;
}
