/* ===============================
   CSS RESET & BASELINE NORMALIZE
   =============================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
  min-height: 100%;
  background: #f6f6f3;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22311e;
  background: #f6f6f3;
  min-height: 100vh;
  letter-spacing: 0.02em;
  overscroll-behavior: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
a {
  color: #12568F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #3d8451;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
hr {
  border: none;
  border-bottom: 1px solid #e2e8e0;
  margin: 24px 0;
}

/* ===============================
   BRAND COLORS (NATURE ORGANIC PALETTE)
   =============================== */
:root {
  --color-primary: #12568F;
  --color-secondary: #FFD100;
  --color-accent: #F5F6F8;
  --color-dark: #22311e;
  --color-green: #3d8451;
  --color-earth: #b8a164;
  --color-brown: #836846;
  --color-stone: #e2e8e0;
  --color-bg: #f6f6f3;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 12px;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  color: #3a4729;
  margin-bottom: 14px;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--color-brown);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 20px;
}
blockquote {
  border-left: 4px solid var(--color-green);
  background: var(--color-accent);
  padding: 12px 24px;
  border-radius: 10px;
  font-style: italic;
  color: #254127;
}

/* ===============================
   FLEXBOX CONTAINER CLASSES
   =============================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container,
.card-grid, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(34,49,30,.08);
  border-left: 6px solid var(--color-green);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive switch for flex row on desktop */
@media (max-width: 769px) {
  .content-wrapper,
  .features .content-wrapper, .features .text-section,
  .services .content-wrapper, .services .text-section {
    flex-direction: row;
    gap: 32px;
  }
  .content-wrapper.text-section {
    flex-direction: row;
    gap: 32px;
  }
  .feature-grid, .service-list {
    flex-direction: row;
    gap: 32px;
  }
  .testimonial-card {
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ===============================
   MAIN STRUCTURE & SPACING
   =============================== */
main {
  background: var(--color-bg);
}
.section,
.hero, .about, .features, .services, .contact, .testimonials, .cta, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px 32px 24px 24px / 24px 24px 32px 32px;
  background: var(--color-accent);
  box-shadow: 0 2px 16px rgba(68, 90, 48, 0.07), 0 1.5px 3px rgba(184,161,100,0.05);
}
.hero {
  background: linear-gradient(120deg, #DDECD0 60%, #F5F6F8 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 32px rgba(61,132,81,0.06);
}
.about, .features, .services, .testimonials, .contact, .cta, .legal, .thank-you {
  background: #f6f6f3;
  box-shadow: 0 2px 16px rgba(68, 90, 48, 0.07);
}

@media (max-width: 768px) {
  .section,
  .hero, .about, .features, .services, .contact, .testimonials, .cta, .legal, .thank-you {
    margin-bottom: 42px;
    padding: 28px 8px;
    border-radius: 20px;
  }
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 8px rgba(61,132,81,0.10);
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 18px;
  background: transparent;
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--color-dark);
  font-weight: 500;
  padding: 6px 10px 6px 6px;
  border-radius: 8px 16px 8px 16px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-green);
  color: #fff;
}
.cta-btn {
  background: var(--color-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  border: none;
  border-radius: 24px 12px 24px 16px / 16px 24px 12px 24px;
  padding: 12px 32px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(61, 132, 81, 0.07);
  transition: background 0.2s, box-shadow 0.2s, transform 0.11s;
  outline: none;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #254127;
  color: #FFD100;
  box-shadow: 0 2px 24px rgba(61, 132, 81, 0.16);
  transform: translateY(-2px) scale(1.03) rotate(-1.3deg);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(61,132,81,0.12);
  margin-left: 16px;
  transition: background 0.2s;
  z-index: 53;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-brown);
  color: #FFD100;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===============================
   MOBILE MENU
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,60,31,.85);
  backdrop-filter: blur(6px);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.8,0.1,0.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  margin: 18px 20px 0 0;
  z-index: 110;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.27rem;
  padding: 12px 0;
  font-weight: 500;
  border-radius: 8px 18px 8px 18px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: #FFD100;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #2e3c1f;
  color: #fff;
  padding: 56px 0 22px 0;
  position: relative;
  letter-spacing: 0.01em;
  box-shadow: 0 -1px 12px 0 rgba(34,49,30,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  font-size: 1rem;
}
.footer-brand img {
  max-height: 54px;
  width: auto;
  margin-bottom: 14px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 32px;
}
.footer-nav a, .legal-nav a {
  color: #eee;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #FFD100;
  text-decoration: underline;
}
.contact-details {
  font-size: 1rem;
  color: #fff;
}
.contact-details a {
  color: #FFD100;
  text-decoration: underline;
  font-weight: 500;
}
footer p {
  margin-bottom: 10px;
}
@media (max-width:768px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 8px;
  }
}

/* ===============================
   CARD COMPONENTS & ELEMENTS
   =============================== */
.card, .feature, .service-item, .blog-post-summary {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(61,132,81,.09);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .feature:hover, .service-item:hover, .blog-post-summary:hover {
  box-shadow: 0 8px 28px rgba(34,49,30,.13);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}
.feature-grid, .service-list {
  width: 100%;
}
.feature img, .service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  background: #DDECD0;
  border-radius: 10px;
  padding: 5px;
}

/* ===============================
   TESTIMONIAL & REVIEW CARDS
   =============================== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #f3faef;
  color: #203220;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(61,132,81,0.09);
  border-left: 6px solid var(--color-green);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 340px;
  position: relative;
  transition: box-shadow .17s, transform .14s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-brown);
  display: block;
  margin-bottom: 7px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(61,132,81,0.11);
  transform: translateY(-2px) scale(1.01) rotate(-1deg);
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  color: #2e3c1f;
  border-left: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-style: italic;
}

/* ===============================
   SERVICE & FEATURE SECTIONS
   =============================== */
.service-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #F6F6F3;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(61,132,81,0.06);
  flex: 1 1 330px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
  position: relative;
}
.service-item:hover {
  box-shadow: 0 6px 18px 0 rgba(61,132,81,0.14);
  transform: translateY(-4px) scale(1.018);
}
.service-item strong {
  color: var(--color-brown);
  font-weight: 700;
}

.feature {
  background: #f2eedb;
  border-radius: 16px 32px 12px 32px/ 22px 11px 33px 18px;
  box-shadow: 0 2px 10px rgba(184,161,100,0.06);
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature:hover {
  box-shadow: 0 8px 26px rgba(130,150,81,0.10);
  transform: scale(1.02) rotate(-1deg);
}
.feature h3 {
  color: var(--color-green);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}

/* ===============================
   BLOG POSTS
   =============================== */
.blog-post-summary {
  min-width: 220px;
  margin-bottom: 20px;
}
.blog-post-summary h3 {
  color: var(--color-primary);
  font-size: 1.19rem;
  margin-bottom: 7px;
}

/* ===============================
   FORMS, BUTTONS, INTERACTIVES
   =============================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #d3d9be;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  color: var(--color-dark);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-green);
  border-color: #3d8451;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px 8px 20px 8px;
  padding: 10px 26px;
  background: var(--color-green);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.03rem;
  box-shadow: 0 2px 10px rgba(61,132,81,0.09);
  transition: background 0.17s, transform 0.12s;
}
button:focus, button:hover, .button:focus, .button:hover {
  background: #2e3c1f;
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.04);
}

/* For .text-section layouts */
.text-section {
  flex: 1 1 380px;
  min-width: 220px;
  margin-bottom: 24px;
}

/* Utility for image: text side by side */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Spacing/tightening on mobile */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.24rem; }
  .hero {
    min-height: 190px;
    padding: 18px 0;
  }
  .testimonial-card, .feature, .service-item, .card {
    padding: 13px 8px;
    min-width: 0;
    font-size: 0.98rem;
  }
}

/* ===============================
   VISUAL ORGANIC ELEMENTS
   =============================== */
.section, .card, .feature, .service-item, .testimonial-card, .blog-post-summary {
  border-radius: 28px 14px 22px 12px / 15px 22px 28px 12px;
}

/* Subtle natural grain texture via overlay */
body::after {
  content: '';
  pointer-events: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  opacity: 0.05;
  background: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="120" height="120" fill="%23e2e8e0"/><circle opacity="0.15" cx="30" cy="40" r="2" fill="%2312568f"/><circle opacity="0.07" cx="75" cy="95" r="2.5" fill="%23b8a164"/><ellipse opacity="0.08" cx="90" cy="18" rx="3" ry="2" fill="%233d8451"/></svg>');
  background-size: 180px 180px;
  background-repeat: repeat;
}

/* Organic shape divider (if needed, can be used as class elsewhere)
.organic-shape {
  border-bottom-left-radius: 62% 31%;
  border-bottom-right-radius: 48% 38%;
  background: #f2eedb;
}
*/

/* ===============================
   COOKIE BANNER & MODAL
   =============================== */
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: rgba(61,132,81,.97);
  color: #fff;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px 22px 20px;
  box-shadow: 0 -4px 18px rgba(34,49,30,.14);
  gap: 36px;
  font-size: 1rem;
  min-height: 70px;
  transition: transform 0.23s cubic-bezier(.62,.12,.37,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-message {
  flex: 1 1 270px;
  color: #fff;
  margin-right: 16px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-actions button {
  background: #FFD100;
  color: #22311e;
  border-radius: 18px 8px 22px 8px;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 1.01rem;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.19s;
}
.cookie-actions button:focus, .cookie-actions button:hover {
  background: #22311e;
  color: #FFD100;
}
.cookie-actions .cookie-settings-btn {
  background: var(--color-green);
  color: #fff;
}
.cookie-actions .cookie-settings-btn:hover, .cookie-actions .cookie-settings-btn:focus {
  background: #FFD100;
  color: #22311e;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  z-index: 9000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,30,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal.hidden {
  display: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px 22px 17px 21px;
  max-width: 420px;
  width: 90vw;
  padding: 36px 26px 28px 26px;
  color: var(--color-dark);
  box-shadow: 0 4px 32px rgba(61,132,81,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--color-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
  margin-left: 8px;
  font-size: 1.07rem;
}
.cookie-modal-content .category-description {
  margin-left: 36px;
  color: #3d8451;
  font-size: 0.96rem;
}
.cookie-modal-content .toggle {
  width: 40px; height: 22px;
  background: #d3d9be;
  border-radius: 22px;
  border: 1.5px solid #ccc;
  position: relative;
  margin-left: 10px;
}
.cookie-modal-content .toggle input {
  display: none;
}
.cookie-modal-content .toggle-slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0,0,0,.1);
  transition: transform 0.22s cubic-bezier(.56,.3,.4,1);
}
.cookie-modal-content .toggle input:checked + .toggle-slider {
  transform: translateX(16px);
  background: #3d8451;
}
.cookie-modal-content .toggle[aria-disabled="true"] {
  background: #f2eedb;
  opacity: 0.6;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  right: 16px; top: 16px;
  background: none;
  color: var(--color-brown);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-content .close-cookie-modal:hover, .cookie-modal-content .close-cookie-modal:focus {
  color: var(--color-green);
}
.cookie-modal-content .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 15px 25px 13px 23px;
  font-size: 1.02rem;
  font-weight: 600;
  border: none;
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(61,132,81,0.07);
  transition: background 0.17s;
}
.cookie-modal-content .cookie-modal-actions button:hover {
  background: #FFD100;
  color: #22311e;
}

@media (max-width:600px){
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 13px 4px 14px 6px;
    font-size: 0.96rem;
    min-height: 54px;
  }
  .cookie-banner .cookie-message{
    margin:0;
  }
  .cookie-actions{
    gap:8px;
  }
}

/* ===============================
   ORGANIC/NATURE MICRO-ANIMATIONS
   =============================== */
.card, .feature, .service-item, .testimonial-card, .blog-post-summary, .cta-btn, .button, .main-nav a, .mobile-nav a {
  transition-property: background, box-shadow, transform, color, border;
  transition-duration: .13s, .19s;
  transition-timing-function: cubic-bezier(.83,.04,.11,1.22);
}

@media (max-width: 768px) {
  .card-container, .feature-grid, .service-list, .content-grid, .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .section, .hero, .about, .features, .services, .contact, .testimonials, .cta, .legal, .thank-you {
    margin-bottom: 32px;
    padding: 19px 4px;
  }
}

/* ===============================
   ORGANIC SECTION DIVIDERS (OPTIONAL UTILITY CLASSES)
   =============================== */
.section-divider {
  width: 40%;
  height: 10px;
  border-radius: 22px 12px 38px 7px;
  background: var(--color-earth);
  margin: 28px auto;
  opacity: 0.11;
}

/* ===============================
   UTILITIES
   =============================== */
.rounded {
  border-radius: 24px;
}
.shadow {
  box-shadow: 0 2px 16px rgba(68, 90, 48, 0.11);
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--color-green)!important;
}

/* ===============================
   ACCENT COLORS FOR ALERTS (IF USED)
   =============================== */
.alert {
  background: #FFE8B0;
  color: #836846;
  border-left: 6px solid #FFD100;
  padding: 20px 28px;
  border-radius: 16px;
  margin-bottom: 24px;
}

/* Hide outline for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #3d8451;
  outline-offset: 2px;
}

/* Disable grid or columns completely. NO display:grid used anywhere.  */
/* END OF FILE */
