:root {
  --color-primary: #0B6F29;
  --color-secondary: #ff7a00;
  --color-bg: #FBFEFB;
  --color-text: #222222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e6f0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
}

.site-logo span {
  display: block;
  font-size: 0.75rem;
  color: #53586A;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #424c60;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

.main-nav a.active,
.main-nav a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #d0d8eb;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background-color: #33405b;
}

/* Layout */

main {
  padding: 1.5rem 1rem 3rem;
}

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

.page-hero {
  padding: 1.75rem 0 0.5rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: #103D10;
}

.page-hero p.tagline {
  margin: 0;
  max-width: 720px;
  color: #5a6479;
  font-size: 0.98rem;
}

.section {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 30, 60, 0.04);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  color: var(--color-primary);
}

.section h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #21324c;
}

.section p {
  margin: 0.3rem 0;
}

.section ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0.75rem;
}

.section li {
  margin-bottom: 0.35rem;
}

.section-emphasis {
  border-left: 4px solid var(--color-secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(11, 74, 111, 0.08);
  color: #0B6F29;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.list-simple {
  list-style: disc;
}

.list-numeric {
  list-style: decimal;
}

/* Blog */

.blog-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.blog-item {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #dde4f2;
  background-color: #ffffff;
  transition: box-shadow 0.15s ease-out, transform 0.1s ease-out;
}

.blog-item + .blog-item {
  margin-top: 0.75rem;
}

.blog-item:hover {
  box-shadow: 0 12px 30px rgba(10, 30, 60, 0.08);
  transform: translateY(-1px);
}

.blog-item-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: #103D10;
}

.blog-item-meta {
  font-size: 0.8rem;
  color: #7a8499;
  margin-bottom: 0.4rem;
}

.blog-item-excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: #505a6d;
}

/* FAQ */

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: #103D10;
}

.faq-answer {
  margin-top: 0.25rem;
}

/* Contact strip & form */

.contact-strip {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #dde4f1;
}

.form-section {
  background-color: #F9F5F1;
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem 1.75rem;
  box-shadow: 0 12px 30px rgba(10, 30, 60, 0.06);
}

.form-section h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
  color: #103D10;
}

.form-section p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #505a6d;
}

.form-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.form-section .col-lg-3,
.form-section .col-lg-12 {
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .form-section .col-lg-3 {
    width: 25%;
  }
  .form-section .col-lg-12 {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .form-section .col-lg-3,
  .form-section .col-lg-12 {
    width: 100%;
  }
}

.form-section fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.form-section .form-control,
.form-section textarea.form-control {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #c3cee3;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
}

.form-section .form-control:focus,
.form-section textarea.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(11, 74, 111, 0.16);
  background-color: #ffffff;
}

.form-section textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.filled-button {
  border-radius: 999px;
  border: none;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.78rem 1.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  transition: transform 0.12s ease-out, box-shadow 0.15s ease-out, background-color 0.16s ease-out;
}

.filled-button:hover {
  background-color: #07324c;
  box-shadow: 0 10px 20px rgba(11, 74, 111, 0.4);
  transform: translateY(-1px);
}

/* Footer */

.footer {
  background-color: #103D10;
  color: #c2cee4;
  margin-top: 3rem;
  padding: 1.6rem 1rem 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer a {
  color: #ffffff;
}

.footer span {
  opacity: 0.9;
}

/* Responsive nav */

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 30, 60, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.18s ease-out;
  }

  .main-nav.open {
    max-height: 260px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.4rem 0.9rem 0.7rem;
  }

  .main-nav li {
    margin: 0.05rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Small screens */

@media (max-width: 600px) {
  .section {
    padding: 1.2rem 1.1rem;
  }

  .form-section {
    padding: 1.3rem 1.1rem 1.4rem;
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }
}