/* ========= CSS RESET & 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fcfcfa;
  color: #23422e;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
:focus {
  outline: 2px solid #15713d;
  outline-offset: 2px;
}

/* ========= VARIABLES ========= */
:root {
  --brand-primary: #015F8C;
  --brand-secondary: #F6F7F8;
  --brand-accent: #FFD600;
  --nature-green: #467947;
  --nature-leaf: #A7C957;
  --nature-olive: #596347;
  --earth-brown: #A5947C;
  --earth-tan: #ECE5D9;
  --earth-clay: #D1BFA7;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 10px;
  --radius-xs: 5px;
  --shadow-soft: 0 2px 12px rgba(70, 121, 71, 0.08);
  --shadow-card: 0 4px 25px -8px rgba(28,60,46, .14);
  --section-padding-v: 40px;
  --section-padding-h: 20px;
  --gap-md: 24px;
  --gap: 20px;
}

/* --------- TYPOGRAPHY SCALE --------- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -1px;
  color: var(--brand-primary);
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--nature-green);
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--nature-olive);
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote, table, span, label, th, td {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #23422e;
  line-height: 1.7;
}
blockquote {
  border-left: 5px solid var(--nature-leaf);
  margin-left: 0;
  margin-right: 0;
  padding-left: 22px;
  font-style: italic;
  background: #f5faeb;
  border-radius: var(--radius-md);
}
strong, b {
  font-weight: 700;
  color: var(--nature-olive);
}

/* ========= LAYOUT STRUCTURE ========= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========= HEADER & NAVIGATION ========= */
header {
  background: #fcfcfa;
  border-bottom: 2px solid var(--earth-tan);
  position: sticky;
  top: 0;
  z-index: 32;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  min-height: 68px;
  padding: 6px 0;
}
.main-nav .logo {
  margin-right: 18px;
  display: flex;
  align-items: center;
}
.main-nav a {
  color: var(--nature-olive);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  transition: background .15s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--nature-leaf);
  color: var(--brand-primary);
}
.btn-primary {
  background: var(--nature-leaf);
  color: var(--brand-primary) !important;
  border-radius: var(--radius-lg);
  padding: 12px 30px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  margin-left: 10px;
  letter-spacing: 0.04rem;
  border: 2px solid var(--brand-primary);
  transition: background .19s, box-shadow .22s, color .18s, border-color .19s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary);
  color: #fff !important;
  border: 2px solid var(--nature-leaf);
  box-shadow: 0 3px 16px 0 rgba(1,95,140,0.17);
}
.cta-link {
  color: var(--nature-green);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: underline;
  margin-top: 18px;
  transition: color .15s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--brand-primary);
}

/* ========= HAMBURGER / MOBILE MENU ========= */
.mobile-menu-toggle {
  display: none;
  background: var(--nature-leaf);
  color: var(--brand-primary);
  border: none;
  font-size: 2.2rem;
  padding: 6px 18px 6px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 110;
  box-shadow: var(--shadow-soft);
  transition: background .16s, color .2s, box-shadow .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fcfcfa;
  z-index: 120;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.59,.01,.46,1.09), opacity .33s;
  box-shadow: 0 8px 40px 0 rgba(1,95,140,.07);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  margin: 20px 18px 6px 0;
  cursor: pointer;
  transition: color .13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--nature-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 0 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--nature-olive);
  padding: 12px 0;
  font-size: 1.15rem;
  border-radius: var(--radius-sm);
  transition: background .13s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 990px) {
  .main-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(.logo):not(.btn-primary) {
    font-size: .97rem;
    padding: 5px 9px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========= SECTIONS ========= */
.hero {
  background: linear-gradient(120deg, #fcfcfa 70%, #e9f6ea 98%);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-xl);
  box-shadow: 0 0 60px 0 rgba(144,184,134,0.07);
  margin-bottom: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .container {
  min-height: 310px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.1rem;
}
.hero p {
  max-width: 640px;
  color: var(--nature-green);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.features {
  background: #f5faeb;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.features .content-wrapper {
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  background: #fcfcfa;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px 14px 18px;
  min-width: 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--nature-olive);
  margin-bottom: 0;
  border: 1.5px solid #eff7f0;
  transition: box-shadow .18s, border .14s;
}
.feature-grid li img {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}
.feature-grid li span {
  color: var(--nature-green);
  font-size: 0.98rem;
  margin-top: 4px;
}
.feature-grid li:hover {
  border-color: var(--nature-leaf);
  box-shadow: 0 8px 42px -8px rgba(90,139,85,0.13);
}

.services-preview {
  background: #faf8f6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
}
.services-preview .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 1.5px solid #ede9de;
  gap: 12px;
  transition: box-shadow .16s, border-color .14s, transform .12s;
}
.service-card h3, .service-card h2 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.service-card p {
  color: var(--nature-olive);
  font-size: 1rem;
  margin-bottom: 6px;
}
.service-card .price {
  color: var(--nature-green);
  font-weight: bold;
  font-size: 1.15rem;
  margin-top: 10px;
  background: var(--earth-tan);
  border-radius: var(--radius-xs);
  padding: 3px 13px 3px 11px;
  letter-spacing: 0.02em;
}
.service-card:hover {
  border-color: var(--nature-leaf);
  box-shadow: 0 6px 38px -10px rgba(37,98,62,0.15);
  transform: translateY(-4px) scale(1.03);
}

/* CTA SECTION */
.cta {
  background: var(--nature-leaf);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  margin-top: 16px;
  padding: 48px 20px;
  color: var(--brand-primary);
}
.cta h2 {
  color: var(--brand-primary);
}
.cta p {
  color: var(--nature-olive);
  margin-bottom: 20px;
}
.cta .btn-primary {
  background: var(--brand-primary);
  color: #fff !important;
  border: 2px solid var(--earth-tan);
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #15713d;
  color: var(--brand-accent) !important;
  border: 2px solid var(--brand-primary);
}

/* ========== TESTIMONIALS ========== */
.testimonials-preview {
  background: #f5faeb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.testimonials-preview .content-wrapper,
.avis .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-left: 9px solid var(--nature-leaf);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s;
  color: #283733;
  min-width: 230px;
  max-width: 600px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  background: transparent;
  border-left: none;
  color: #283733;
  margin-bottom: 7px;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: var(--brand-primary);
  font-family: var(--font-body);
  margin-top: 6px;
  margin-bottom: 5px;
}
.testimonial-rating {
  color: var(--nature-leaf);
  font-size: 1.3rem;
  margin-top: 2px;
  letter-spacing: 1.5px;
}
.rating-summary {
  color: var(--brand-primary);
  font-size: 1.1rem;
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-family: var(--font-display);
  margin-bottom: 24px;
}

/* ========== TABLES ========== */
.pricing-table {
  background: #fcfcfa;
  border-radius: var(--radius-md);
  overflow: auto;
  box-shadow: var(--shadow-soft);
  width: 100%;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 17px 12px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
}
.pricing-table th {
  background: var(--nature-leaf);
  color: var(--brand-primary);
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.pricing-table tr:nth-child(even) td {
  background: #f7f6f3;
}
.pricing-table td {
  border-bottom: 1px solid var(--earth-tan);
  color: var(--nature-green);
}

/* ========== FOOTER ========== */
footer {
  background: var(--brand-secondary);
  padding: 33px 0 20px 0;
  border-top: 1.5px solid var(--earth-clay);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--nature-olive);
  font-size: 0.97rem;
  padding: 3px 13px 3px 0;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  transition: background .12s, color .12s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--nature-leaf);
  color: var(--brand-primary);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--nature-green);
  line-height: 1.8;
  max-width: 270px;
}

/* ========== CONTENT, TEXT & BULLETS ========== */
.text-section,
.confirmation-message {
  background: #fcfcfa;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 26px 18px;
  margin-bottom: 24px;
}
.text-section ul,
.feature-list,
.bullets,
.bullet-list,
.trust-badges {
  margin-top: 16px;
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul li,
.feature-list li,
.bullets li,
.bullet-list li {
  list-style: disc inside;
  color: var(--nature-green);
  font-size: 1rem;
  font-family: var(--font-body);
}
.bullet-list li{
  color: var(--nature-olive);
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #e9f6ea;
  padding: 6px 15px;
  border-radius: var(--radius-xs);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--nature-green);
}
.trust-badges img {
  width: 24px;
  height: 24px;
  display: inline;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ========== CONTACT PAGE SPECIALS ========== */
.contact-details {
  background: #f5faeb;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 12px 18px;
  margin-bottom: 24px;
  color: var(--brand-primary);
}
.map-placeholder {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.static-map {
  background: #e9f6ea;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.static-map img {
  width: 39px;
  height: 39px;
  margin-right: 12px;
}

/****** CARDS FLEXBOX PATTERNS & LAYOUTS ******/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 16px;
  min-width: 220px;
  max-width: 350px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/******* RESPONSIVE DESIGN (MOBILE-FIRST) *******/
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
  }
  .content-wrapper {
    gap: 14px;
  }
  .footer-links {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .footer-contact {
    max-width: 100%;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .section {
    margin-bottom: 34px;
    padding: 23px 6px;
  }
  .footer-links {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 6px;
  }
  .footer-logo {
    margin-bottom: 5px;
  }
  footer .content-wrapper {
    gap: 17px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta {
    padding: 27px 9px;
    margin-bottom: 38px;
  }
  .testimonials-preview, .features {
    padding: 12px 0;
  }
  .feature-grid, .services-preview .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    padding: 16px 10px;
    gap: 8px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 17px;
  }
  .trust-badges, .bullets, .bullet-list {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .service-card, .card, .pricing-table th, .pricing-table td {
    font-size: 0.97rem;
    padding: 12px 6px;
  }
  .testimonials-preview, .features {
    padding: 6px 0;
  }
  .hero h1 {
    font-size: 1.13rem;
  }
}

/********* MICROINTERACTIONS & HOVER *********/
button, .btn-primary, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  transition: box-shadow .14s, background .17s, color .13s, border .13s;
}
button:active, .btn-primary:active {
  box-shadow: 0 0 0 2px var(--brand-accent);
  background: #fcfcfa;
}

/***** Cookie Consent Banner & Modal *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 200;
  background: #e9f6ea;
  border-top: 2px solid var(--nature-leaf);
  box-shadow: 0 -2px 21px 0 rgba(67,121,71,.10);
  padding: 22px 15px 25px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
  min-height: 80px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--nature-olive);
  animation: cookieBannerAppear .67s cubic-bezier(.71,.16,.59,.95);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border-radius: var(--radius-lg);
  border: 2px solid var(--nature-leaf);
  background: var(--brand-primary);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  padding: 9px 22px;
  cursor: pointer;
  transition: background .18s, color .17s, border .15s;
}
.cookie-btn.accept {
  background: var(--nature-leaf);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #ece5d9;
  color: var(--nature-olive);
  border-color: var(--nature-leaf);
}
.cookie-btn.settings {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--earth-tan);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-color: var(--nature-olive);
}
.cookie-preferences-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,49,28,0.33);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s cubic-bezier(.51,.13,.35,.99);
}
.cookie-preferences-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fcfcfa;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px 0 rgba(70,121,71,0.18);
  padding: 32px 28px;
  min-width: 315px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.27rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--nature-leaf);
}
.cookie-category[disabled] .cookie-category-label,
.cookie-category[aria-disabled="true"] .cookie-category-label {
  opacity: 0.7;
}
.cookie-category-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--nature-olive);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  font-size: 1.25rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  position: absolute;
  right: 22px;
  top: 22px;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: var(--nature-leaf);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 9px 14px 13px;
  }
  .cookie-modal-content {
    padding: 18px 7px;
    min-width: 0;
  }
}

/********* UTILITY CLASSES & HELPER SPACING *********/
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mt-8 { margin-top: 8px!important; }
.mb-8 { margin-bottom: 8px!important; }
.gap-20 { gap: 20px!important; }
.align-center { align-items: center!important; }
.text-center { text-align: center!important; }
.flex-row { display: flex; flex-direction: row!important; }
.flex-col { display: flex; flex-direction: column!important; }

/* Better scrollbar for modal / nav on modern browsers only */
::-webkit-scrollbar {width: 8px;background: #e9f6ea;}
::-webkit-scrollbar-thumb {background: #b3d08b;border-radius: 12px;}

/***** END OF STYLES *****/
