body {
  margin: 0;
  background: #f6f9f4;
  color: #1f2a22;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.rd833871 { min-height: 100vh; }
.w9f66283, .d98a4 {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.j77f8d9e {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e1e8dc;
}

.w9f66283 {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.q272d2 { display: flex; align-items: center; gap: 14px; }
.burger-menu { display: none; background: transparent; border: 0; padding: 0; cursor: pointer; }
.j488ae span { display: block; width: 24px; height: 2px; background: #1f2a22; margin: 5px 0; }

.u8e30c25f { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.j842e16b7 a { color: #4c5a4c; font-weight: 700; }
.j842e16b7 a:hover { color: #1f2a22; }

.rce04 { display: flex; gap: 10px; }
.g93625, .a538ba23, .x945e428 {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
}
.g93625 { background: #e5ecdf; color: #22331f; }
.a538ba23, .x945e428 { background: #7fb442; color: #ffffff; }

.jc04077 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  opacity: 0;
  transition: opacity .25s ease;
}

.jc04077.open {
  display: block;
  opacity: 1;
}

.ab01ad {
  width: min(86vw, 360px);
  max-width: 360px;
  height: 100%;
  background: #ffffff;
  border-right: 1px solid #e1e8dc;
  padding: 18px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .25s ease;
}

.jc04077.open .ab01ad {
  transform: translateX(0);
}

.i8ad896 { position: relative; background: transparent; border: 0; width: 40px; height: 40px; cursor: pointer; }
.i8ad896:before, .i8ad896:after {
  content: '';
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: #1f2a22;
}
.i8ad896:before { transform: rotate(45deg); }
.i8ad896:after { transform: rotate(-45deg); }

.fd25b9f, .wedc1a { margin: 14px 0; }
.hf5b0 { display: grid; gap: 10px; }
.jc21830c0 {
  border: 1px solid #e1e8dc;
  border-radius: 14px;
  padding: 12px 14px;
}

.w88b5 { display: block; }
.d98a4 { padding: 24px 0 64px; }

.o74673907 {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  margin: 18px 0 24px;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.o74673907:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}

.mc2a1e57 {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: center;
}

.mc2a1e57 .hb9a31d3 { color: #ffffff; }

#intro h1 { font-size: 44px; line-height: 1.1; margin: 0 0 14px; }
section { margin: 0 0 28px; }
h2 { font-size: 34px; line-height: 1.15; color: #1f2a22; }
p { color: #4c5a4c; }

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e8dc;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  margin: 18px 0;
}

th, td { padding: 14px 16px; border-bottom: 1px solid #e1e8dc; text-align: left; }
th { background: #f0f5eb; }
li { margin-bottom: 8px; }

.hb9a31d3 { margin-bottom: 14px; font-weight: 700; color: #1f2a22; }

@media (max-width: 980px) {
  .burger-menu { display: block; }
  .u8e30c25f, .rce04 { display: none; }
  .w9f66283, .d98a4 { width: min(100% - 24px, 1200px); }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  #intro h1 { font-size: 34px; }
  h2 { font-size: 28px; }
}

/* === QUICK EDIT COLORS / CORE STYLES === */
:root {
  --bg: #f6f9f4;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --text: #1f2a22;
  --muted: #4c5a4c;
  --line: #e1e8dc;
  --primary: #7fb442;
  --primary-dark: #6ba036;
  --secondary: #e5ecdf;
}
/* === END QUICK EDIT BLOCK === */


/* === BUTTON HOVER / ANIMATION === */
.g93625, .a538ba23, .x945e428 {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.g93625:hover {
  background: #d7e2cd;
  transform: translateY(-2px);
}

.a538ba23:hover, .x945e428:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(127,180,66,.35);
}

.a538ba23:active, .x945e428:active {
  transform: translateY(0) scale(.98);
}


/* === TABLE HEADER ROW COLOR === */
table tr:first-child {
  background: #0a5ac9;
}

table tr:first-child td {
  color: #ffffff;
  font-weight: 700;
  border-bottom: none;
}


/* === LIST STYLES === */
ul {
  list-style: disc;
  padding-left: 22px;
  margin: 18px 0 18px;
}

ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

ul li::marker {
  color: var(--primary);
}

ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

ol li {
  margin-bottom: 8px;
  color: var(--muted);
}

ol li::marker {
  color: var(--primary);
  font-weight: 700;
}


/* === HEADER / BODY CONTRAST FIX === */
body {
  background: var(--bg);
}

.j77f8d9e {
  background:#0a5ac9;
  border-bottom: 1px solid #14201a;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.j842e16b7 a {
  color: #fff;
}

.j842e16b7 a:hover {
  color: #ffffff;
}

.j488ae span {
  background: #ffffff;
}

.g93625 {
  background: #ff5050;
  color: #ffffff;
}

.g93625:hover {
  background: #3f5847;
}


/* === FOOTER === */
.site-footer {
  background: #0a5ac9;
  color: #d7e2cd;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 0 24px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand img {
  margin-bottom: 12px;
}

.footer-brand p {
  color: #a9bba1;
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #34493a;
  padding: 16px 0;
}

.footer-bottom p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
  }
}



/* === MOBILE STICKY CTA BAR === */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 980px) {
  .rce04 {
    display: none;
  }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #1f2a22;
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -4px 14px rgba(0,0,0,.25);
  }

  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    color: #ffffff;
  }

  .mobile-cta-bar .g93625 {
    background: #34493a;
  }

  .mobile-cta-bar .a538ba23 {
    background: var(--primary);
  }

  body {
    padding-bottom: 70px;
  }
}