/* =============================================================
   CSS RESET & BASE STYLES (Normalize v1.0 + base consistency)
   ============================================================= */
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #244C2F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #244C2F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFD24C;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* =======================
   BRANDING & TYPE SCALE
   ======================= */
:root {
  --brand-green: #244C2F;
  --brand-yellow: #FFD24C;
  --brand-accent: #E3ECF4;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --color-bg-main: #FFF;
  --color-bg-accent: var(--brand-accent);
  --color-heading: var(--brand-green);
  --color-text: #222;
  --color-btn-bg: var(--brand-green);
  --color-btn-txt: #FFF;
  --color-btn-secondary-bg: var(--brand-yellow);
  --color-btn-secondary-txt: var(--brand-green);
  --color-shadow: rgba(36,76,47,0.08);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}
small, .small {
  font-size: 0.95rem;
  opacity: 0.85;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}

/* ========================
   LAYOUT & CONTAINER
   ======================== */
body {
  background: var(--color-bg-main);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.text-section {
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 4vw;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 6vw;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* ========================
   HEADER, NAV & HERO
   ======================== */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 2px solid var(--brand-accent);
  box-shadow: 0 4px 24px -12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 1.06rem;
  font-family: var(--font-display);
}
nav a {
  padding: 6px 10px;
  color: var(--brand-green);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active {
  background: var(--brand-yellow);
  color: var(--brand-green);
}
header img {
  width: 145px;
  max-height: 58px;
  display: block;
}
.cta.primary, .cta.secondary {
  font-family: var(--font-display);
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.08rem;
  border-radius: 32px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  border: none;
  box-shadow: 0 2px 12px -6px var(--color-shadow);
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.cta.primary {
  background: var(--brand-green);
  color: #FFF;
}
.cta.primary:hover, .cta.primary:focus {
  background: #388B54;
  color: #FFF;
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: var(--brand-yellow);
  color: var(--brand-green);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFEF8A;
  color: var(--brand-green);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--brand-green);
  margin-left: 10px;
  z-index: 110;
  outline: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-yellow);
  outline: 2px solid var(--brand-yellow);
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: var(--brand-accent);
  min-height: 260px;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container {
  min-height: 240px;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--brand-green);
  line-height: 1.16;
  margin-bottom: 10px;
  font-family: var(--font-display);
  text-shadow: 1px 1px 0 #FFD24C33, 2px 2px 0 rgba(36,76,47,0.07);
}
.hero p {
  font-size: 1.23rem;
  max-width: 520px;
  margin-bottom: 8px;
  color: #233;
  font-family: var(--font-body);
}
.hero .cta {
  margin-top: 6px;
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
}

/* ======================
   FLEXBOX LAYOUT CLASSES
   ====================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 12px -4px var(--color-shadow);
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 5px 18px -4px rgba(36,76,47,0.13);
  transform: translateY(-4px) scale(1.03);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px -5px var(--color-shadow);
  margin-bottom: 20px;
  border-left: 6px solid var(--brand-yellow);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.08rem;
  font-family: var(--font-body);
  line-height: 1.78;
}
.testimonial-card small {
  color: var(--brand-green);
  font-family: var(--font-display);
  font-size: 1.06rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px -4px rgba(36,76,47,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =================
   FILTER BAR
   ================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}
.filter-bar input[type=search], .filter-bar select {
  font-family: var(--font-body);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--brand-accent);
  font-size: 1.07rem;
  min-width: 160px;
  outline: none;
  background: #FFF;
  transition: border-color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 5px -2px var(--color-shadow);
}
.filter-bar input[type=search]:focus, .filter-bar select:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 2px 11px -3px var(--brand-yellow);
}

@media (max-width: 550px) {
  .filter-bar {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
}

/* =============================
   UL/OL/LI (Custom Artistic Bullets)
   ============================= */
ul li,
ol li {
  position: relative;
  padding-left: 36px !important;
  margin-bottom: 14px;
  font-size: 1.09rem;
  font-family: var(--font-body);
  line-height: 1.7;
}
ul li img {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0.09em;
}
ul li::before, ol li::before {
  display: none;
}
.text-section ul li,
.text-section ol li {
  padding-left: 22px !important;
}

ol {
  counter-reset: listnum;
}
ol li {
  counter-increment: listnum;
  padding-left: 32px !important;
}
ol li::before {
  content: counter(listnum) ". ";
  color: var(--brand-yellow);
  position: absolute;
  left: 0;
  top: 0.07em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14em;
}

/* =====================
   CONTACT DETAILS BLOCK
   ===================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--brand-accent);
  border-radius: 13px;
  padding: 14px 22px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-details a {
  color: var(--brand-green);
  text-decoration: underline;
  font-weight: 600;
}

.address-map {
  background: #FFF7DB;
  padding: 12px 20px;
  border-radius: 10px;
  color: #222;
  font-size: 1.06rem;
  margin-bottom: 16px;
}

/* ==============
   FOOTER SECTION
   ============== */
footer {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 -4px 20px -14px var(--color-shadow);
  padding: 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.06rem;
}
.footer-nav a {
  color: var(--brand-green);
  text-decoration: none;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #388B54;
}
.footer-logo img {
  width: 60px;
  margin-bottom: 12px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
  color: #385;
  font-family: var(--font-body);
}
.footer-contact a {
  color: #244C2F;
  font-weight: 600;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 0;
  }
}

/* ======================
   MOBILE MENU OVERLAY
   ====================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,76,47, 0.96);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.38s cubic-bezier(0.8,0,0.33,1);
  transform: translateX(100%);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: var(--brand-yellow);
  color: var(--brand-green);
  font-size: 2.4rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 7px -2px var(--color-shadow);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #FFD24C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-start;
  font-family: var(--font-display);
  padding-left: 24px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  width: 93vw;
  display: block;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--brand-yellow);
  color: var(--brand-green);
}
@media (max-width: 1020px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    display: none;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ======================
   SPACING & GAPS
   ====================== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
main > section:last-child {
  margin-bottom: 20px;
}
.card + .card { margin-top: 20px; }

/* ================
  COOKIE CONSENT
  ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #244C2F;
  color: #FFF;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 24px 20px;
  box-shadow: 0 -2px 18px -6px rgba(36,76,47,0.25);
  font-size: 1.03rem;
  font-family: var(--font-body);
  animation: cookie-banner-in 0.5s;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px -4px var(--color-shadow);
  font-weight: 700;
  transition: background 0.16s, color 0.16s, transform 0.15s;
}
.cookie-banner .accept {
  background: var(--brand-yellow);
  color: var(--brand-green);
}
.cookie-banner .accept:hover {
  background: #FFC700;
  transform: translateY(-1px) scale(1.04);
}
.cookie-banner .reject {
  background: #FFF;
  color: var(--brand-green);
  border: 2px solid var(--brand-yellow);
}
.cookie-banner .reject:hover {
  background: #FFF7DB;
}
.cookie-banner .settings {
  background: var(--brand-accent);
  color: var(--brand-green);
}
.cookie-banner .settings:hover {
  background: #D8EAF4;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,76,47,0.75);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.4s;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: var(--brand-green);
  padding: 38px 28px 32px 32px;
  border-radius: 20px;
  min-width: 290px;
  max-width: 95vw;
  box-shadow: 0 4px 24px -2px var(--color-shadow);
  position: relative;
  font-size: 1rem;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.cookie-modal .category-name {
  font-weight: 600;
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal .always-on {
  opacity: 0.7;
  font-style: italic;
  color: #888;
  font-size: 0.95rem;
}
.cookie-modal button.close-modal {
  position: absolute;
  top: 17px; right: 18px;
  background: var(--brand-yellow);
  color: var(--brand-green);
  border: none;
  font-size: 1.6em;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-buttons button {
  padding: 8px 20px;
  border-radius: 22px;
  font-weight: 700;
  font-family: var(--font-display);
}
.cookie-modal .modal-buttons .accept {
  background: var(--brand-yellow);
  color: var(--brand-green);
  border: none;
}
.cookie-modal .modal-buttons .accept:hover {
  background: #FFC700;
}
.cookie-modal .modal-buttons .cancel {
  background: #FFF;
  color: var(--brand-green);
  border: 2px solid var(--brand-yellow);
}
.cookie-modal .modal-buttons .cancel:hover {
  background: #FFF7DB;
}

/* ================
   ARTISTIC STYLING
   ================ */
h1, h2, h3 {
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1 {
  text-transform: none;
  background: none;
}
h2, h3 {
  text-transform: none;
  background: none;
}

section {
  position: relative;
}
section:nth-child(even)::before {
  /* Artistic paint stroke accent, decorative only */
  content: '';
  position: absolute;
  top: 22px; left: 10px;
  width: 68px; height: 18px;
  background: var(--brand-yellow);
  opacity: 0.16;
  border-radius: 12px 38px 19px 12px;
  z-index: 1;
  pointer-events: none;
  display: block;
}
@media (max-width: 600px) {
  section:nth-child(even)::before {
    width: 36px; height: 9px; left: 2px; top: 10px;
  }
}

.card {
  /* artistic edge shadow effect */
  box-shadow: 0 4px 20px -11px var(--brand-yellow);
  border-left: 6px solid #FFD24C;
  background: #FFF;
}
.card strong {
  font-size: 1.05em;
  color: #244C2F;
}

/* ================
   BUTTONS & EFFECTS
   ================ */
button, .cta {
  outline: none;
}
button:focus, .cta:focus {
  outline: 2px solid var(--brand-yellow);
}

/* ===========
   ANIMATION
   =========== */
.cta.primary, .cta.secondary, button, .cookie-banner button, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.card, .testimonial-card, .cookie-modal {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 20px -8px var(--brand-yellow);
}

/* =============
   ARTISTIC FONTS
   ============= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cta, button, nav, .mobile-nav, .cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* =============
   RESPONSIVENESS
   ============= */
@media (max-width: 768px) {
  .hero {
    min-height: 100px;
    margin-bottom: 38px;
  }
  .hero .container {
    min-height: 105px;
    padding: 0 0 0 0 !important;
  }
}
@media (max-width: 550px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.29rem; }
  h2 { font-size: 1.12rem; }
  .card, .testimonial-card {
    padding: 16px 10px;
    font-size: 0.97rem;
  }
  .content-wrapper, .content-grid, .card-container, .section {
    gap: 10px !important;
  }
}

/* ==============================
   SCROLLBAR STYLING (Modern UI)
   ============================== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--brand-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-green);
  border-radius: 18px;
}

/* ==============
   FORM ELEMENTS
   ============== */
input, select, textarea {
  font-family: var(--font-body);
  border-radius: 10px;
  border: 1.5px solid var(--brand-accent);
  padding: 11px 15px;
  font-size: 1.03rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 1px 9px -3px var(--brand-yellow);
}

/* ===========
   MISC UTILITIES
   =========== */
.mt-1 { margin-top: 10px !important; }
.mb-1 { margin-bottom: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }

/* ==============
   ARTISTIC DECOS
   ============== */
h2, h3 {
  position: relative;
  z-index: 2;
}
h2::after {
  content: '';
  display: block;
  width: 42px; height: 5px;
  background: var(--brand-yellow);
  border-radius: 12px 13px 9px 10px;
  margin-top: 12px;
  opacity: 0.7;
}

/* ====== END OF FILE ====== */
