:root {
  --green: #7bb725;
  --dark-gray: #3c3c3b;
  --muted: #6c6c6b;
  --hero-overlay: rgba(255,255,255,0.85);
  --max-width: 1200px;
}

/* Global */
* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--dark-gray);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}

/* Header styles */
.navbar { background: #fff; }
.navbar .nav-link { color: var(--dark-gray) !important; }
.navbar .btn { background: var(--green); border-color: var(--green); color:#fff; }
.logo-sm { width: 200px; object-fit: contain; }
.logo-full { max-width: 360px; width: 100%; height: auto; }

/* Hero */
.hero-section {
  padding: 3.5rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--dark-gray);
  min-height: 320px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 0;
}
.hero-section .container,
.hero-section img,
.hero-text { position: relative; z-index: 2; }
.hero-text h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.2rem; }
.hero-text h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-text p.lead { margin-bottom: 1rem; font-weight: 600; }

/* Section titles */
.section-title {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Cards */
.card { border-radius: 12px; }
.pricing-card {
  border-radius: 8px;
  background: linear-gradient(180deg,#ffffff,#f8f9f9);
  border: 1px solid #ececec;
  padding: 1.5rem;
  text-align: center;
}
.pricing-card h5 { font-weight: 700; margin-bottom: 0.25rem; }
.pricing-card p.display-6 { color: var(--green); margin-bottom: 0.25rem; }

/* Service and pricing icons */
.service-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .service-img {
    width: 80px;
    height: 80px;
  }
}

/* About list */
.about-list { padding-left: 1.25rem; margin-top: 0.75rem; }
.about-list li { margin-bottom: 0.5rem; }

/* Buttons */
.btn-success { background: var(--green); border-color: var(--green); color: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Footer */
footer { background: var(--dark-gray); color: #fff; }
footer a { color: #fff; }

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text h2 { font-size: 1.25rem; }
}

/* Small helpers */
.text-muted { color: #6b6b6a !important; }

/* Accessibility focus states */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(123,183,37,0.25);
  outline-offset: 2px;
}

/* Misc spacing consistency */
.section { padding: 3rem 0; }

/* About section image responsiveness */
.about-img {
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* Autofill functionality */
@keyframes autofillStart {}
input:-webkit-autofill {
  animation-name: autofillStart;
}
