/* CSS RESET & BASE TYPOGRAPHY */
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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #FFEEDB 0%, #90BFA3 100%);
  color: #2B3642;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* BRAND FONTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #2B3642;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1rem; margin-bottom: 12px; }
p, li, span, a, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3642;
  line-height: 1.7;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* SPACING & COMMON LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(43,54,66,0.08), 0 1.5px 8px rgba(144,191,163,0.03);
  margin-bottom: 20px;
  padding: 28px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 14px 40px rgba(43,54,66,0.12), 0 4px 14px rgba(90,195,133,0.07);
  transform: translateY(-4px) scale(1.018);
}
.content-grid, .feature-grid, .service-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .workshop-list > div, .tip-categories > div {
  background: #FFF;
  padding: 28px 20px 22px 20px;
  border-radius: 18px;
  flex: 1 1 240px;
  min-width: 260px;
  max-width: 316px;
  box-shadow: 0 3px 12px rgba(43,54,66,0.06), 0 1px 4px rgba(144,191,163,0.03);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover, .service-list > div:hover, .workshop-list > div:hover, .tip-categories > div:hover {
  box-shadow: 0 10px 28px rgba(22,64,58,0.11), 0 2px 6px rgba(90,195,133,0.07);
  transform: translateY(-3px) scale(1.013);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 24px 24px;
  margin-bottom: 20px;
  background: #FFF;
  border-left: 5px solid #90BFA3;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(43,54,66,0.09), 0 1px 4px rgba(144,191,163,0.05);
  color: #2B3642;
}
.testimonial-card p {
  color: #1D232C;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card span {
  color: #2B3642;
  font-size: 0.97rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.cta-primary, .cta-secondary, .cookie-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.18s;
  margin-right: 18px;
  box-shadow: 0 2px 9px rgba(43,54,66,0.07);
  outline: none;
}
.cta-primary {
  background: linear-gradient(90deg, #90BFA3 0%, #FFEEDB 80%);
  color: #2B3642;
  box-shadow: 0 3px 10px rgba(43,54,66,0.10);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #76A288 0%, #FFE6C3 90%);
  color: #1D232C;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: #2B3642;
  color: #FFEEDB;
  border: 2px solid #2B3642;
  box-shadow: 0 2px 9px rgba(43,54,66,0.06);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FFEEDB;
  color: #2B3642;
  border: 2px solid #90BFA3;
  transform: translateY(-1.5px) scale(1.025);
}

/* HEADER */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 1px 8px rgba(43,54,66,0.04);
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 82px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.06rem;
  color: #2B3642;
  padding: 4px 6px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #90BFA3;
  color: #FFF;
}
header .cta-primary {
  margin: 0 0 0 24px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 121;
  width: 48px;
  height: 48px;
  background: linear-gradient(120deg, #90BFA3 65%, #FFEEDB 100%);
  border-radius: 50%;
  color: #2B3642;
  font-size: 2.1rem;
  box-shadow: 0 2px 9px rgba(43,54,66,0.14);
  border: 2px solid #FFF;
  justify-content: center;
  align-items: center;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2B3642;
  color: #FFEEDB;
  box-shadow: 0 3px 13px rgba(43,54,66,0.17);
}

/* MOBILE MENU BASE */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #90BFA3 55%, #FFEEDB 100%);
  z-index: 130;
  box-shadow: 0 8px 32px rgba(43,54,66,0.16);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.62,0.10,0.46,0.99), opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px; right: 22px;
  background: #2B3642;
  color: #FFEEDB;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  border: 2px solid #FFEEDB;
  z-index: 10;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFEEDB;
  color: #2B3642;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 90px 0 0 0;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  letter-spacing: 0.04em;
  color: #2B3642;
  background: #FFF9F2;
  padding: 16px 48px;
  border-radius: 99px;
  margin-bottom: 0;
  transition: background 0.16s, color 0.14s, transform 0.13s;
  width: 90vw;
  text-align: center;
  max-width: 350px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2B3642;
  color: #FFEEDB;
  transform: scale(1.035);
}

/* FOOTER */
footer {
  width: 100%;
  background: #2B3642;
  color: #FFEEDB;
  margin-top: 48px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 38px 0 16px 0;
  gap: 36px;
  border-bottom: 1.5px solid #5a8088;
}
.footer-top nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-top nav a {
  color: #FFEEDB;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
  padding: 4px 6px;
  border-radius: 5px;
  transition: background 0.12s, color 0.13s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: #90BFA3;
  color: #2B3642;
}
.footer-top img {
  height: 38px;
  border-radius: 9px;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 14px 0 18px 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
}
.contact-details img {
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 20px;
  align-items: center;
}
.footer-links a {
  color: #FFEEDB;
  font-size: 0.98rem;
  font-family: "Roboto", Arial, sans-serif;
  border-bottom: 1.5px solid #90BFA3;
  padding-bottom: 2px;
  transition: border-color 0.16s, color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #90BFA3;
  border-color: #FFEEDB;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  color: #2B3642;
}
.contact-info img {
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 14px 0;
  color: #646464;
}
.business-hours {
  color: #373737;
  font-weight: 500;
  margin-top: 9px;
}

.form-notice {
  background: #FFF8F0;
  color: #2B3642;
  border-left: 4px solid #90BFA3;
  padding: 16px 22px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.thank-you-message {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0 0 0;
}

/* UTILITY */
.bg-accent {
  background: #FFEEDB !important;
}
.text-secondary {
  color: #90BFA3 !important;
}
.text-primary {
  color: #2B3642 !important;
}
.border-accent {
  border-color: #FFEEDB !important;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 20px 28px;
  background: #2B3642;
  color: #FFEEDB;
  z-index: 500;
  box-shadow: 0 -4px 30px rgba(43,54,66,0.17);
  font-size: 1rem;
  transition: transform 0.23s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-banner-btn {
  margin-right: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  background: #90BFA3;
  color: #2B3642;
  padding: 8px 23px;
  border-radius: 99px;
  border: none;
  font-size: 1rem;
  transition: background 0.17s, color 0.19s, transform 0.12s;
}
.cookie-consent-banner .cookie-banner-btn:hover, .cookie-consent-banner .cookie-banner-btn:focus {
  background: #FFEEDB;
  color: #2B3642;
  transform: scale(1.04);
}
.cookie-consent-banner .cookie-banner-btn.secondary {
  background: #FFEEDB;
  color: #2B3642;
}
.cookie-consent-banner .cookie-banner-btn.secondary:hover {
  background: #90BFA3;
  color: #2B3642;
}
.cookie-consent-banner .cookie-banner-btn.settings {
  background: #2B3642;
  color: #90BFA3;
  border: 1.5px solid #90BFA3;
}
.cookie-consent-banner .cookie-banner-btn.settings:hover {
  background: #90BFA3;
  color: #2B3642;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 700;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,54,66,0.36);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(43,54,66,0.29);
  max-width: 410px;
  width: 92vw;
  padding: 34px 28px 23px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.32s cubic-bezier(0.6,0.2,0.26,1);
}
@keyframes cookie-modal-in {
  0% { transform: scale(0.92) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #2B3642;
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1rem;
  color: #2B3642;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #90BFA3;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  width: 32px; height: 32px;
  background: #2B3642;
  color: #FFEEDB;
  border-radius: 50%;
  font-size: 1.05rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #90BFA3;
  color: #2B3642;
}
/* ---- END COOKIE ---- */

/* RESPONSIVE (MOBILE-FIRST) */
@media (max-width: 1060px) {
  .container { max-width: 95vw; }
  .feature-grid > div, .service-list > div, .workshop-list > div, .tip-categories > div {
    max-width: 100%;
    min-width: 190px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .workshop-list, .content-grid {
    flex-direction: column;
    gap: 20px 0;
  }
  .feature-grid > div, .service-list > div, .workshop-list > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  header .container {
    flex-direction: row;
    align-items: center;
    min-height: 60px;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {gap: 20px;}
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
  .section { padding: 28px 7px; }
  .feature-grid, .service-list, .workshop-list, .content-grid {
    flex-direction: column;
    gap: 18px 0;
  }
  .testimonial-card { padding: 15px 13px 18px 13px; }
  .thank-you-message { padding: 14px 0 0 0; }
  .contact-details, .footer-links { gap: 6px 0; }
  .footer-top { padding: 24px 0 10px 0; gap: 11px; }
  .footer-bottom {padding: 5px 0 10px 0; gap: 7px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.06rem; }
  .section { padding: 21px 2px; margin-bottom: 28px; }
  .container { padding: 0 2px; }
  .cookie-consent-banner { flex-direction: column; gap: 8px; padding: 16px 8px; font-size: 0.97rem; }
  .cookie-modal { padding: 20px 7px 17px 11px; }
  .mobile-nav a { font-size: 1rem; padding: 11px 13px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
a, .cta-primary, .cta-secondary, .cookie-banner-btn {
  transition: color 0.19s, background 0.19s, box-shadow 0.2s, transform 0.18s;
}
.card, .feature-grid > div, .service-list > div, .workshop-list > div, .tip-categories > div {
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card {
  transition: box-shadow 0.16s, border-color 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(43,54,66,0.15);
  border-color: #2B3642;
}

/* ACCESSIBILITY: FOCUS STATES */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-banner-btn:focus {
  outline: 2px solid #90BFA3;
  outline-offset: 2px;
  z-index: 1;
}

/* VISUAL ENHANCEMENTS */
.card, .feature-grid > div, .service-list > div, .testimonial-card, .workshop-list > div, .tip-categories > div {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(43,54,66,0.07), 0 2px 6px rgba(144,191,163,0.04);
}

/* VISUAL HIERARCHY */
.section h2, .content-wrapper > h2 {
  margin-top: 0;
  margin-bottom: 14px;
}
.section ul, .section ol {
  margin-left: 22px;
  margin-bottom: 18px;
  padding-left: 0;
  list-style: disc inside;
}
.section ul li, .section ol li {
  margin-bottom: 10px;
}

/* GAP FIXES ON CARDS/CONTAINER */
.feature-grid, .service-list, .workshop-list, .tip-categories, .content-grid {
  gap: 24px;
}

/* ICON SIZING */
.feature-grid img, .service-list img, .workshop-list img, .tip-categories img, .contact-info img {
  width: 38px; height: 38px; object-fit: contain; margin-bottom: 2px;
}

/* ENSURE NO OVERLAPS & GOOD SPACING */
.section + .section { margin-top: 8px; }
.card + .card, .testimonial-card + .testimonial-card { margin-top: 20px; }

.tip-categories {
    display: flex;
}

footer .contact-details span{
  color: #FFEEDB;
}
/* ENSURE ALL FLEXBOX LAYOUTS ONLY */
/* (none of the code uses grid, columns, or break-inside!) */
