/* --- 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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #22351c;
  background: #f6f6f3;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #205085;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #205085;
  outline-offset: 2px;
}
strong {
  font-weight: 600;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
hr {
  border: none;
  border-bottom: 1px solid #dadada;
  margin: 24px 0;
}

/* ----- ORGANIC NATURE BRAND COLORS ----- */
:root {
  --color-primary: #205085;
  --color-secondary: #F5F7FA;
  --color-accent: #b8c877;
  --color-dark-green: #22351c;
  --color-earth: #d1be9c;
  --color-brown: #a58447;
  --color-green: #4B7340;
  --color-bg: #f6f6f3;
  --color-white: #fff;
  --color-shadow: rgba(60, 89, 52, 0.07);
  --color-gray: #6a7865;
  --color-warning: #FDB927;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22351c;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  line-height: 1.13;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p, li, address {
  font-size: 1rem;
  color: #3e472f;
}

/* ----- CONTAINER & SECTION STYLES ----- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main section {
  margin-bottom: 60px;
}
main section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  gap: 18px;
}

/* ---- HERO SECTION ---- */
.hero {
  background: var(--color-earth);
  border-radius: 0 0 54px 54px / 0 0 44px 44px;
  box-shadow: 0 6px 38px -18px var(--color-shadow);
  margin-bottom: 48px;
}
.hero .container {
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero h1 {
  color: var(--color-dark-green);
}
.hero p {
  color: #49632f;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* ---- MAIN NAVIGATION ---- */
header {
  background: var(--color-secondary);
  box-shadow: 0 4px 26px -12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--color-green);
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main-nav a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.main-nav a.cta-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  margin-left: auto;
  font-weight: bold;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px -4px var(--color-shadow);
  border-radius: 28px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.035);
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 16px;
  border-radius: 23px 21px 24px 18px;
  background: #e1e6d9;
  padding: 2px 6px;
  transition: background 0.14s;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-earth);
  color: var(--color-dark-green);
  font-size: 2.1rem;
  border-radius: 14px;
  padding: 2px 15px 3px 15px;
  margin-right: 10px;
  margin-top: 6px;
  align-self: flex-end;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 247, 250, 0.98);
  z-index: 6000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.85,0,0.15,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--color-accent);
  color: var(--color-dark-green);
  border-radius: 18px;
  padding: 4px 20px 6px 20px;
  align-self: flex-end;
  margin: 17px 20px 15px 0;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-warning);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 20px 34px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-green);
  background: var(--color-earth);
  padding: 13px 24px;
  margin-bottom: 7px;
  border-radius: 18px;
  box-shadow: 0 3px 14px -3px var(--color-shadow);
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-green);
  color: var(--color-earth);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 5px;
    padding: 8px 7px 8px 7px;
  }
}
@media (max-width: 890px) {
  .main-nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.97rem;
  }
  .main-nav img {
    height: 30px;
    margin-right: 7px;
  }
  .main-nav a.cta-primary {
    font-size: 0.96rem;
    padding: 8px 10px;
  }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 8px;
    z-index: 1101;
  }
}

/* ---- GENERIC FLEX LAYOUTS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 16px 30px 22px 18px/18px 24px 21px 20px;
  box-shadow: 0 6px 22px -8px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 320px;
  border-left: 8px solid var(--color-green);
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 12px 36px -8px var(--color-shadow);
  transform: translateY(-3px) scale(1.04);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #edead3;
  border-radius: 32px 15px 20px 40px/22px 35px 24px 19px;
  box-shadow: 0 4px 26px -8px var(--color-shadow);
  border-left: 8px solid var(--color-green);
  max-width: 540px;
  min-width: 260px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px -8px var(--color-shadow);
  transform: scale(1.03);
}
.testimonial-card p {
  color: #2a3214;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #4B7340;
  font-weight: 600;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--color-accent);
  color: var(--color-dark-green);
  border-radius: 24px 12px 21px 28px/15px 24px 14px 18px;
  padding: 18px 22px;
}

/* ---- FEATURES, SERVICES, BENEFITS ---- */
.features .content-wrapper > ul,
.services .content-wrapper > ul,
.benefit-list,
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.features .content-wrapper > ul > li,
.services .content-wrapper > ul > li,
.benefit-list > li,
.impact-stats > li {
  background: var(--color-white);
  border-radius: 24px 12px 21px 18px/14px 20px 17px 13px;
  padding: 22px 26px 18px 24px;
  box-shadow: 0 2px 12px -4px var(--color-shadow);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #30502c;
  font-size: 1.04rem;
  min-width: 200px;
  flex: 1 1 210px;
}
.features .content-wrapper > h3,
.services .content-wrapper > h3 {
  margin-top: 24px;
  color: var(--color-green);
  font-size: 1.13rem;
  font-weight: 600;
}
ul.benefit-list, ul.impact-stats {
  margin-top: 0 !important;
  gap: 16px;
}

/* ---- SERVICES PRICING ---- */
.services .content-wrapper > ul > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 14px;
}
.services .content-wrapper .price, 
.services .content-wrapper strong {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.06rem;
}

/* --- CONTACT & ADDRESS BLOCKS --- */
address {
  font-style: normal;
  color: #22351c;
  font-size: 1rem;
  background: #f3efd8;
  border-radius: 20px 18px 19px 25px/21px 22px 20px 18px;
  padding: 18px 26px;
  box-shadow: 0 2px 10px -2px var(--color-shadow);
  margin-bottom: 18px;
  margin-top: 2px;
}
address a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ---- BUTTONS ---- */
.cta-primary, .cookie-button, .cookie-banner button, .cookie-modal button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 28px 22px 28px 21px/19px 26px 19px 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 14px -5px var(--color-shadow);
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: background 0.19s, color 0.17s, box-shadow 0.14s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus, .cookie-banner button:hover, .cookie-banner button:focus, .cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-accent);
  color: var(--color-dark-green);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 7px 22px -7px var(--color-shadow);
}
.cta-primary:active, .cookie-banner button:active, .cookie-modal button:active {
  background: var(--color-brown);
  color: var(--color-white);
  transform: scale(0.97);
}
/* For secondary/neutral cookie banner button */
.cookie-button.secondary {
  background: var(--color-earth);
  color: var(--color-green);
  font-weight: 600;
}
.cookie-button.secondary:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
.cookie-button.settings {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-button.settings:hover {
  background: var(--color-green);
  color: var(--color-earth);
}

/* ---- FAQ PAGE ---- */
.faq ul > li {
  background: var(--color-secondary);
  border-radius: 20px 14px 18px 23px/17px 20px 19px 16px;
  box-shadow: 0 2px 14px -4px var(--color-shadow);
  padding: 18px 24px;
  margin-bottom: 20px;
  color: #273a17;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.faq ul > li strong {
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
}

/* ---- LEGAL PAGES ---- */
.legal {
  background: var(--color-secondary);
  border-radius: 34px 22px 44px 21px/29px 30px 23px 26px;
  box-shadow: 0 3px 32px -16px var(--color-shadow);
  padding: 34px 18px 28px 22px;
  margin-bottom: 56px;
}
.legal h1, .legal h2 {
  color: var(--color-green);
  margin-bottom: 12px;
}
.legal ul > li {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 13px;
  color: #32571b;
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 42px 18px 0 0/44px 26px 0 0;
  padding: 34px 0 0 0;
  margin-top: 50px;
  box-shadow: 0 -5px 44px -11px var(--color-shadow);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 26px;
}
.footer-menu a {
  color: var(--color-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.0);
  transition: background 0.23s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--color-earth);
  color: var(--color-green);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 14px;
}
.footer-brand img {
  height: 38px; width: 38px;
  border-radius: 36% 54% 63% 42%/58% 32% 57% 41%;
  background: #eaf5e2;
  padding: 5px 6px;
}
.footer-brand span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7000;
  width: 100vw;
  background: #e8f4d6;
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 -5px 32px -8px var(--color-shadow);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 19px 22px;
  font-size: 1rem;
  color: #374e25;
  animation: slideUpBanner 0.35s cubic-bezier(0.62,0,0.15,1);
}
@keyframes slideUpBanner {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-right: 30px;
}
.cookie-banner button {
  min-width: 120px;
  margin-left: 5px;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 9000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35, 53, 28, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.27s cubic-bezier(0.51,0,0.05,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #f7fced;
  padding: 32px 38px 28px 38px;
  border-radius: 33px 24px 27px 30px/26px 28px 27px 20px;
  min-width: 330px;
  max-width: 94vw;
  box-shadow: 0 9px 46px -12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: var(--color-green);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e6efdd;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 1rem;
  color: #22351c;
}
.cookie-modal-category .switch {
  display: inline-flex;
  align-items: center;
}
.cookie-modal-category input[type='checkbox'] {
  width: 38px;
  height: 20px;
  border-radius: 16px;
  background: #cedebf;
  appearance: none;
  margin-left: 8px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal-category input[type='checkbox']:checked {
  background: var(--color-green);
}
.cookie-modal-category input[type='checkbox']::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 8px;
  background: #FFF;
  transition: transform 0.16s;
}
.cookie-modal-category input[type='checkbox']:checked::before {
  transform: translateX(16px);
}
.cookie-modal-category input[type='checkbox'][disabled] {
  background: #b6bbad;
  cursor: not-allowed;
}
.cookie-modal-category label {
  font-weight: 550;
  color: var(--color-dark-green);
  margin-right: 3px;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}


/* ---- TABLES ---- */
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--color-white);
  border-radius: 14px 16px 13px 14px/15px 12px 13px 13px;
  box-shadow: 0 2px 8px -2px var(--color-shadow);
  overflow: hidden;
  margin-bottom: 22px;
}
th, td {
  text-align: left;
  padding: 10px 13px;
}
th {
  background: #e4ebdd;
  color: var(--color-dark-green);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
td {
  font-size: 1rem;
}

/* ---- ORGANIC DECORATIVE ELEMENTS (Just for backgrounds) ---- */
.section {
  background: #fcf9f3;
  border-radius: 34px 18px 40px 24px/22px 32px 28px 20px;
  box-shadow: 0 2px 24px -8px var(--color-shadow);
}

/* ---- MISCELLANEOUS ---- */
::-webkit-scrollbar { width: 9px; background: #e8f4d6; }
::-webkit-scrollbar-thumb { background: #ceecca; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #b8c877; }

::selection { background: #f5fbdf; }

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  border: 1.5px solid #b8c877;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #f8fcf0;
  color: #22351c;
  margin-top: 3px;
  margin-bottom: 17px;
  width: 100%;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: 5px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1140px) {
  .container { max-width: 97vw; }
}
@media (max-width: 980px) {
  .content-grid, .card-container {
    gap: 14px;
  }
  .features .content-wrapper > ul,
  .services .content-wrapper > ul,
  .benefit-list,
  .impact-stats {
    gap: 12px;
  }
  .card {
    min-width: 180px;
    padding: 18px 10px 14px 12px;
  }
  .section { padding: 25px 6px; }
}
@media (max-width: 820px) {
  .section { padding: 18px 2px; }
  .container { padding: 0 4px; }
  .features .content-wrapper > ul > li,
  .services .content-wrapper > ul > li {
    padding: 11px 9px 10px 10px;
    min-width: 155px;
  }
  .testimonial-card {
    padding: 10px;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.16rem; }
  .hero { border-radius: 0 0 34px 27px/0 0 33px 28px; }
  .card { flex-basis: 95vw; min-width: 95vw; }
  .card-container, .content-grid, .features .content-wrapper > ul, .services .content-wrapper > ul, .benefit-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 94vw;
    min-width: unset;
  }
  .section { padding: 10px 2px; margin-bottom: 35px; }
  .features .content-wrapper > ul > li, .services .content-wrapper > ul > li { padding: 10px 8px 10px 11px; }
  .footer-menu { gap: 8px; }
  .footer-brand img { height: 28px; width: 28px; }
  .cookie-modal-content { padding: 18px 9px 16px 14px; min-width: 80vw; }
  .cookie-banner { flex-direction: column; gap: 13px; padding: 13px 8px; }
  .mobile-nav a { padding: 12px 10px; font-size: 1.07rem; }
  .mobile-menu-close { font-size: 1.5rem; padding: 4px 12px; }
  .container { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 560px) {
  h1, h2, h3, h4 { text-align: left; }
  .hero .container { padding-top: 26px; padding-bottom: 28px; }
  .footer-brand span { font-size: 0.93rem; }
  .section { border-radius: 12px; }
}

/* --- TRANSITIONS & ANIMATIONS --- */
.card, .cta-primary, .cookie-banner button, .cookie-modal button, .testimonial-card {
  transition: box-shadow 0.16s, background 0.19s, color 0.16s, transform 0.17s;
}

/* --- Z-INDEX LAYERS --- */
header { z-index: 1000; }
.mobile-menu { z-index: 6000; }
.cookie-banner { z-index: 7000; }
.cookie-modal { z-index: 9000; }

/* --- ENSURING NO OVERLAPS --- */
main > section, main > .section { margin-bottom: 60px !important; }
main > section:last-child, main > .section:last-child {
  margin-bottom: 0 !important;
}

/* --- ENVE USERS: FORBIDDEN CSS PROPERTIES CHECK --- */
/* display:grid, grid-template-*, columns:* , break-inside never used */
