/* =============================
   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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7F2;
  color: #20505C;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #32579B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7BC79D;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}

/* =============================
   FONT-FACE (Google Fonts)
============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');


/* =============================
    COLOR VARIABLES (fallbacks)
============================= */
:root {
  --color-primary: #20505C;
  --color-secondary: #7BC79D;
  --color-accent: #F7F7F2;
  --color-warning: #FFB840;
  --color-info: #38A1DB;
  --color-danger: #EC466A;
  --color-text: #20505C;
  --color-heading: #20505C;
  --color-light: #FFFFFF;
  --color-gray: #E3ECEB;
}


/* =============================
          LAYOUT
============================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

main {
  margin-top: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 20px;
}
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(32,80,92,0.08);
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(123, 199, 157, 0.18);
  padding: 24px;
  transition: transform 0.18s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-7px) scale(1.018) rotate(-2deg);
  box-shadow: 0 8px 36px 0 rgba(32,80,92,0.13);
}

.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  background: #fff;
  color: #20505C;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(123,199,157,0.10);
  margin-right: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,80,92,0.13);
  transform: scale(1.04) rotate(-1.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,80,92,0.07);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 22px rgba(32,80,92,0.13);
  transform: scale(1.03) rotate(1.5deg);
}
.feature-grid img {
  width: 32px;
  height: 32px;
  background: #FFB84033;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 6px #FFB84023;
}

/* =============================
          TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.11;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  color: #38A1DB;
  font-style: italic;
}
strong {
  font-weight: 700;
  color: #EC466A;
  letter-spacing: 1px;
}
p {
  font-size: 1rem;
  color: #20505C;
  margin-bottom: 13px;
}
blockquote {
  font-size: 1.12rem;
  color: #20505C;
  background: #F7F7F2;
  border-left: 4px solid #7BC79D;
  padding: 8px 18px 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-author {
  font-size: 1rem;
  color: #20505C;
  font-weight: 600;
  text-align: right;
  margin-top: 8px;
}
.category {
  background: #7BC79D;
  color: #fff;
  border-radius: 13px;
  padding: 3px 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
}
.text-section ul, .text-section ol{
  margin-left: 14px;
  margin-bottom: 12px;
  padding-left: 16px;
}
.text-section li {
  list-style: disc;
  font-size: 1rem;
  margin-bottom: 7px;
}


/* =============================
    BUTTONS & LINKS
============================= */
.btn-primary,
.btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 36px;
  background: linear-gradient(90deg, #FFB840 0%, #7BC79D 100%);
  color: #20505C;
  border: none;
  border-radius: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  transition: background 0.22s, color 0.15s, transform 0.13s;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #FFB84019;
  text-shadow: 0 1px 0 #fff7;
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #7BC79D 0%, #FFB840 100%);
  color: #EC466A;
  transform: scale(1.06) rotate(-2.5deg);
  box-shadow: 0 6px 28px #7BC79D4c;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 28px;
  background: #20505C;
  color: #fff;
  border-radius: 38px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #7BC79D;
  color: #20505C;
}

/* =============================
       NAVIGATION
============================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px 0 #7BC79D14;
  position: sticky;
  top: 0;
  z-index: 41;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 16px;
  gap: 18px;
}
.logo img {
  height: 46px;
  animation: logo-pop 0.85s cubic-bezier(.57,1.81,.16,1.03) 0.2s 1 both;
}
@keyframes logo-pop {
  from { transform: scale(0.75) rotate(-10deg); opacity: 0.6; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.main-nav {
  display: flex;
  gap: 16px;
  flex: 1 1 auto;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.main-nav a {
  padding: 9px 12px;
  border-radius: 30px;
  color: #20505C;
  background: none;
  transition: background 0.16s, color 0.11s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #7BC79D22;
  color: #EC466A;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #FFB840;
  color: #20505C;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: background 0.13s, color .15s, box-shadow .17s;
  margin-left: 13px;
}
.mobile-menu-toggle:hover {
  background: #7BC79D;
  color: #fff;
  box-shadow: 0 2px 32px #20505C25;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.53,1.72,.52,.91);
  box-shadow: 0 2px 48px 0 #20505C1a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2rem;
  color: #20505C;
  border: none;
  margin: 22px 0 0 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #EC466A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 34px 24px 0 32px;
  width: 100%;
}
.mobile-nav a {
  padding: 13px 20px;
  border-radius: 30px;
  font-size: 1.17rem;
  color: #20505C;
  background: #7BC79D11;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BC79D;
  color: #fff;
}

/* =============================
        FOOTER
============================= */
footer {
  background: #20505C;
  color: #fff;
  padding: 32px 0 10px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  opacity: .87;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 18px;
  transition: background .16s, color .15s;
}
.footer-nav a:hover {
  background: #7BC79D;
  color: #20505C;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.footer-brand img {
  height: 42px;
}
.footer-brand p {
  font-size: 0.98rem;
  color: #F7F7F2;
  opacity: 0.8;
}

/* =============================
        HERO SECTION
============================= */
.hero {
  background: linear-gradient(90deg, #7BC79D 74%, #FFB840 100%);
  background-blend-mode: multiply;
  color: #20505C;
  border-radius: 24px;
  margin-bottom: 60px;
  min-height: 270px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 36px 0 #20505C11;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #20505C;
  font-size: 2.9rem;
  text-shadow: 0 2px 12px #20505C13;
}
.hero .btn-primary {
  margin-top: 21px;
}

/* =============================
         SERVICE LISTS
============================= */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 14px #7BC79D10;
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .19s, transform .18s;
  position: relative;
}
.service-list li:hover {
  box-shadow: 0 6px 22px #7BC79D26;
  transform: scale(1.02) rotate(.8deg);
}
.service-list h3 {
  margin-bottom: 2px;
  color: #20505C;
}
.service-price {
  font-size: 1.12rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFB840;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.trust-signals {
  margin-top: 22px;
}
.trust-signals ul li {
  font-size: 15px;
  color: #20505C;
  padding-left: 12px;
  margin-bottom: 7px;
  position: relative;
}
.trust-signals ul li:before {
  content: '✔';
  color: #7BC79D;
  font-size: 16px;
  margin-right: 6px;
  position: absolute;
  left: -14px;
  top: 0;
}

/* =============================
         BLOG FEED
============================== */
.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.blog-feed article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #7BC79D11;
  padding: 22px 18px;
  transition: box-shadow .14s, transform .19s;
}
.blog-feed article:hover {
  box-shadow: 0 6px 22px  #7BC79D23;
  transform: scale(1.02) rotate(-1deg);
}
.blog-feed h3 a {
  color: #EC466A;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
}
.blog-feed h3 a:hover {
  color: #7BC79D;
}
.blog-feed p {
  color: #20505C; 
}

.categories-overview {
  margin-top: 8px;
}
.categories-overview h4 {
  margin-bottom: 5px;
}
.categories-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.categories-overview li {
  background: #7BC79D;
  color: #fff;
  font-size: 15px;
  font-family: 'Montserrat',Arial,sans-serif;
  padding: 4px 13px;
  border-radius: 20px;
  font-weight: 700;
}

/* =============================
    TESTIMONIAL SLIDER & CARDS
============================= */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 6px;
}
.testimonial-card {
  min-width: 260px;
  max-width: 400px;
  min-height: 128px;
  border: 2px dashed #FFB84090;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #20505C;
}
.testimonial-card blockquote {
  background: #F7F7F2;
  border-left: 4px solid #7BC79D;
  color: #20505C;
}

@media (max-width: 1020px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

/* =============================
     BEST PRACTICES / TIPS
============================= */
.expert-tips-list {
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.expert-tips-list li {
  background: #EC466A17;
  color: #20505C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 13px;
  padding: 9px 15px;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px #7BC79D09;
}
.lifehacks-descriptions ul {
  margin-left: 10px;
}
.lifehacks-descriptions li {
  font-size: 1rem;
  color: #20505C;
  margin-bottom: 7px;
  position: relative;
  padding-left: 16px;
}
.lifehacks-descriptions li:before {
  content: '\25CF';
  color: #38A1DB;
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* =============================
      INSPIRATION CARDS/LISTS
============================= */
.inspiration-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.inspiration-list li {
  font-size: 1rem;
  color: #20505C;
  background: #7BC79D14;
  border-radius: 11px;
  padding: 8px 14px;
}

/* =============================
    CONTACT DETAILS/MAP BLOCK
============================= */
.contact-details {
  background: #7BC79D08;
  border-radius: 15px;
  padding: 18px 16px;
  margin-bottom: 22px;
  font-size: 1.07rem;
}
.contact-details strong {
  color: #20505C;
}
.map-placeholder {
  background: #F7F7F2;
  padding: 16px;
  border-radius: 13px;
  color: #7BC79D;
  text-align: center;
  font-size: .94rem;
  margin-bottom: 9px;
}

/* =============================
       COOKIE CONSENT BANNER
============================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #20505C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 18px 12px 18px 32px;
  box-shadow: 0 -2px 18px #20505C29;
  min-height: 74px;
  gap: 25px;
  font-size: 1rem;
  animation: cookie-slide-up 0.9s cubic-bezier(.63,1.62,.21,1.15);
}
@keyframes cookie-slide-up {
  from { transform: translateY(90px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: #fff;
  margin: 0;
  padding-right: 18px;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 10px 25px;
  border-radius: 21px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: .97rem;
  margin: 0 0 0 0;
  background: #7BC79D;
  color: #20505C;
  border: none;
  cursor: pointer;
  transition: background .13s, color .2s;
}
.cookie-btn.accept {
  background: #FFB840;
  color: #20505C;
}
.cookie-btn.accept:hover {
  background: #EC466A;
  color: #fff;
}
.cookie-btn.reject {
  background: #EC466A;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #20505C;
  color: #FFB840;
}
.cookie-btn.settings {
  background: #38A1DB;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #20505C;
  color: #38A1DB;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #20505Cee;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .28s;
  animation: cookie-fade-in 0.7s cubic-bezier(.63,1.52,.26,1.01);
}
@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #20505C;
  border-radius: 18px;
  box-shadow: 0 2px 44px #20505C22;
  padding: 38px 34px 26px 34px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modal-pop 0.48s cubic-bezier(.54,1.52,.36,1.01);
}
@keyframes modal-pop {
  from { transform: scale(0.8) rotate(-2deg); opacity: 0.6; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #20505C;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 1.31rem;
}
.cookie-category {
  background: #FFB84021;
  border-radius: 11px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-category .toggle {
  margin-left: 24px;
}
.toggle-switch {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 28px;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #7BC79D;
  border-radius: 20px;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transition: background .16s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #EC466A;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  left: 3px; top: 3px;
  box-shadow: 0 2px 8px #20505C17;
  transition: left .16s;
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 21px;
  background: #FFB840;
}

.cookie-modal-content .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 13px;
  justify-content: flex-end;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #EC466A;
  font-size: 2rem;
  font-weight: 700;
  align-self: flex-end;
  cursor: pointer;
  margin-top: -16px;
  margin-bottom: 15px;
  transition: color .16s;
}
.cookie-modal-close:hover {
  color: #20505C;
}

/* =============================
     ANIMATION MICRINTERACTIONS
============================= */
.btn-primary, .cookie-btn {
  transition: background .12s, color .13s, transform .13s, box-shadow .15s;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(.98) rotate(-1deg);
  box-shadow: 0 1px 6px #FFB84011;
}
input, textarea, select {
  transition: border-color .17s, box-shadow .14s;
  outline: none;
}

/* =============================
   RESPONSIVENESS
============================= */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
  .feature-grid li, .testimonial-card {
    flex: 1 1 359px;
    max-width: 100%;
  }
  .main-nav {
    gap: 9px;
  }
}
@media (max-width: 900px) {
  .blog-feed article {
    padding: 15px 9px;
  }
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .testimonial-slider,
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, .cta {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 28px 8px;
    min-height: 140px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .testimonials-card {
    max-width: 99vw;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.01rem;
  }
  .cookie-modal-content {
    padding: 22px 10px 14px 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 12px 4px 13px 4px;
    gap: 8px;
    font-size: 0.98rem;
  }
  .btn-primary,
  .cookie-btn {
    padding: 10px 14px !important;
    font-size: .97rem;
  }
}

/* =============================
   PLAYFUL DECORATIVE ACCENTS
============================= */
/* Extra fun: Doodle accent on hovered cards */
.card:hover:before,
.service-list li:hover:before,
.testimonial-card:hover:before {
  content: '';
  position: absolute;
  width: 44px; height: 26px;
  background: url('assets/doodle-accent-1.svg') no-repeat center/contain;
  top: -18px; right: -10px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  animation: fun-pop-in 0.36s cubic-bezier(.73,1.46,.32,1.01);
}
@keyframes fun-pop-in {
  from { opacity: 0; transform: scale(.65) rotate(-11deg); }
  to   { opacity: 0.72; transform: scale(1) rotate(2deg); }
}

/* =============================
     A11Y/ACCESSIBILITY WRAPPERS
============================= */
:focus {
  outline: 2px dashed #FFB840;
  outline-offset: 2px;
}

/* ===============================
    MISC: SPACING GUIDELINES
=============================== */
.section, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

