/* ===================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #F4F5F2;
  color: #19232D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

/* Scrollbar styling for playful effect */
::-webkit-scrollbar {
  width: 8px;
  background: #e3f8e6;
}
::-webkit-scrollbar-thumb {
  background: #267A4A;
  border-radius: 8px;
}

/* ===================================
   CSS VARIABLES (fallbacks included)
==================================== */
:root {
  --color-primary: #267A4A;
  --color-secondary: #19232D;
  --color-accent: #F4F5F2;
  --color-accent2: #fffbe7;
  --color-bright: #38b5a7;
  --color-funpink: #F45F92;
  --color-yellow: #FFE066;
  --color-orange: #FF781F;
  --box-radius: 20px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition-main: all 0.25s cubic-bezier(.77,.06,.46,1.61);
  --shadow-primary: 0 4px 24px 0 rgba(38,122,74,0.12),0 2px 4px 0 rgba(244,95,146,0.06);
  --shadow-fun: 0 2px 12px 0 rgba(255,224,102,0.16),0 1px 3px 0 rgba(38,122,74,0.16);
}

/* ===================================
   TYPOGRAPHY PLAYFUL_DYNAMIC
==================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.36rem;
  color: #F45F92;
  font-weight: 700;
}
h2 {
  position: relative;
  display: inline-block;
  padding-right: 16px;
}
h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 12px;
  position: absolute;
  left: 0;
  bottom: -12px;
  opacity: 0.6;
}
p, li, a, span, td, th, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-secondary);
}
.subheadline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-bright);
  font-weight: 500;
}
.note {
  font-size: 0.91rem;
  color: var(--color-primary);
  background: #fffbe7;
  border-left: 5px solid var(--color-primary);
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 14px;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  margin-bottom: 8px;
}

/* ===================================
   LAYOUT STRUCTURE CLASSES
==================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-fun);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.42,1.01,.23,.96) 0s, box-shadow 0.18s;
  padding: 32px 26px;
  min-width: 220px;
  flex: 1 1 260px;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(38,122,74,0.18), 0 2px 16px 0 rgba(244,95,146,0.11);
  z-index: 2;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-primary);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-funpink);
  max-width: 475px;
  min-width: 250px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(38,122,74,0.17), 0 1.5px 6px 0 rgba(255,224,102,0.11);
  transform: scale(1.015) rotate(-0.4deg);
  border-left: 6px solid var(--color-yellow);
}
.customer-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.star-rating {
  color: var(--color-yellow);
  font-size: 1.32em;
  font-family: var(--font-display);
  letter-spacing: 1.2px;
  user-select: none;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbe7;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 1.5px 7px 0 rgba(255,224,102,0.08),0 1px 4px 0 rgba(244,95,146,0.04);
  gap: 15px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 320px;
  border-left: 5px solid var(--color-bright);
  transition: border-color 0.22s, box-shadow 0.18s, transform 0.13s;
}
.feature-grid li:hover {
  border-color: var(--color-funpink);
  box-shadow: 0 6px 32px 0 rgba(38,122,74,0.08),0 6px 12px 0 rgba(255,224,102,0.1);
  transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px #FFE06666);
  animation: icon-bounce 2s infinite 0.2s;
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  60% { transform: translateY(-7px); }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 24px;
}
.services-list li {
  background: #e3f8e6;
  border-radius: 15px;
  padding: 22px 17px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(38,122,74,0.08);
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.services-list h3 {
  color: var(--color-bright);
  font-size: 1.17em;
  font-weight: 800;
}
.services-list h3 span {
  font-family: var(--font-body);
  font-weight: 700;
  margin-left: 10px;
  color: var(--color-funpink);
  background: var(--color-yellow);
  border-radius: 8px;
  padding: 1px 9px;
  font-size: 0.95em;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(38,122,74,0.09);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 12px;
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08em;
}
.pricing-table tr:nth-child(even) td {
  background: #F4F5F2;
}
.pricing-table tr:nth-child(odd) td {
  background: #fffbe7;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fffbe7;
  border-radius: 12px;
  box-shadow: 0 1px 8px #FFE06633;
  padding: 18px 15px;
  transition: box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  color: var(--color-primary);
  font-size: 1.13em;
}
.faq-item:hover {
  box-shadow: 0 3px 18px #F4F5F244, 0 3px 8px #FFE06633;
  transform: scale(1.01);
}
.faq-item.open .text-section {
  display: block;
  max-height: 2000px;
  transition: max-height 0.4s ease;
}
.faq-item .text-section {
  display: none;
  margin-left: 7px;
  margin-top: 8px;
}

/* BLOG TIPS/ADVICE */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tips-list li {
  background: #e3f8e6;
  border-left: 9px solid var(--color-bright);
  border-radius: 15px;
  padding: 22px 17px;
  box-shadow: 0 1.5px 10px 0 rgba(38,122,74,0.07);
}

.seasonal-cleaning-advice {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 20px;
  margin-bottom: 18px;
}

/* Cookie Consent Banner and Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9001;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -2px 14px 0 rgba(244,95,146,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  gap: 16px;
  font-size: 1.01em;
  border-radius: 27px 27px 0 0;
  animation: cookie-banner-slide-in 0.71s cubic-bezier(.25,.77,.94,.91) 0s;
}
@keyframes cookie-banner-slide-in {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner-text {
  color: var(--color-secondary);
  flex: 1 1 auto;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  padding: 8px 17px;
  margin: 0 0 0 0;
  border-radius: 10px;
  background: var(--color-bright);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--color-bright);
  box-shadow: 0 1px 4px #38b5a72e;
  transition: background 0.1s, color 0.1s, transform 0.10s;
}
.cookie-btn.cookie-accept {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: #63c475;
  color: var(--color-secondary);
  transform: scale(1.06);
}
.cookie-btn.cookie-reject {
  background: var(--color-funpink);
  border-color: var(--color-funpink);
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #fff;
  color: var(--color-funpink);
  border-color: #F45F92;
}
.cookie-btn.cookie-settings {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-secondary);
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #fff;
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(10,27,38,0.18);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.31s ease;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe7;
  border-radius: 22px;
  padding: 38px 26px 22px 26px;
  max-width: 410px;
  width: 97vw;
  box-shadow: 0 14px 52px 0 rgba(38,122,74,0.16);
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 23px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.35em;
  color: var(--color-funpink);
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e3f8e6;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1em;
}
.cookie-toggle {
  appearance: none;
  width: 39px;
  height: 21px;
  border-radius: 20px;
  background: #c1ffe3;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.26s;
  border: 1px solid #a4fbc5;
}
.cookie-toggle:checked {
  background: var(--color-primary);
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  top: 2.3px; left: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px #38b5a733;
  transition: left 0.2s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-category.disabled label {
  color: #aaa;
  font-style: italic;
}

/* ===================================
   HEADER - NAVIGATION BAR
==================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(38,122,74,0.06);
  position: sticky;
  top: 0; left: 0; z-index: 900;
  border-bottom: 2.5px solid #e3f8e6;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 18px 10px 14px;
  gap: 18px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01em;
  border-radius: 8px;
  padding: 7px 13px;
  mix-blend-mode: normal;
  transition: background 0.2s, color 0.16s, transform 0.09s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-secondary);
  transform: scale(1.05) rotate(-2deg);
}

.cta.primary {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--color-funpink);
  color: #fff;
  font-size: 1.05em;
  border-radius: 12px;
  padding: 12px 30px;
  border: none;
  box-shadow: 0 2px 10px #F45F9240;
  margin-left: 15px;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s; 
  display: inline-block;
  outline: none;
  text-align: center;
  letter-spacing: .05em;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-yellow);
  color: var(--color-secondary);
  transform: scale(1.075) rotate(-2deg);
  box-shadow: 0 3px 16px #F45F921A;
}
/* Hide mobile menu button by default */
.mobile-menu-toggle {
  background: var(--color-bright);
  font-size: 2em;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  box-shadow: 0 1px 8px #38b5a726;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.13s, transform 0.09s;
  margin-left: 11px;
  z-index: 11000;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #63c475;
  color: var(--color-secondary);
  transform: scale(1.08);
}

/* ===================================
   MOBILE BURGER MENU
==================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 92vw;
  max-width: 365px;
  background: #fff;
  box-shadow: 8px 0 30px 0 rgba(38,122,74,0.10), 0 0 0 200vw rgba(38,122,74,0.13);
  z-index: 10001;
  transform: translateX(-104%);
  transition: transform 0.41s cubic-bezier(.77,.06,.46,1.61);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px 26px 33px 23px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-funpink);
  font-size: 2em;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 8px;
  transition: color 0.13s, transform 0.10s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-primary);
  transform: rotate(8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  font-size: 1.18em;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  background: #e3f8e6;
  border-radius: 10px;
  padding: 15px 15px;
  margin-bottom: 0;
  transition: background 0.14s, color 0.13s, transform .08s;
  box-shadow: 0 1px 7px #38b5a730;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-secondary);
  transform: translateX(6px) scale(1.05);
}


/* ===================================
   HERO SECTION - playful, bouncy
==================================== */
.hero {
  padding: 56px 0 36px;
  background: linear-gradient(96deg, #e3f8e6 65%, #fffbe7 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 25px;
}
.hero h1 {
  color: var(--color-funpink);
  font-size: 2.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px #ffe06666;
  animation: hero-title-pop 1s cubic-bezier(.44,2,1,.92) .08s both;
}
@keyframes hero-title-pop {
  0% { opacity: 0; transform: translateY(-20px) scale(0.84); }
  40% { opacity: 1; transform: translateY(7px) scale(1.08); }
  100% { opacity: 1; transform: none; }
}
.hero p.subheadline {
  margin-bottom: 26px;
  color: var(--color-primary);
  background: #fffbe7;
  border-radius: 14px;
  padding: 8px 16px;
  font-size: 1.23em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  animation: popin .7s .35s both;
}
@keyframes popin {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: none; }
}
.hero .cta.primary {
  font-size: 1.13em;
  animation: popin 0.8s 0.28s both;
}

/* ===================================
   CTA SECTIONS
==================================== */
.cta {
  background: var(--color-bright);
  background-blend-mode: lighten;
  border-radius: 24px;
  margin: 44px 0 0;
  box-shadow: 0 2px 14px 0 #38b5a720;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta h2 {
  color: var(--color-yellow);
  text-shadow: 0 1px 8px #ffe06655;
  font-size: 2.0em;
}
.cta p {
  color: #fff;
  font-weight: 500;
}
.cta .cta.primary {
  font-size: 1.16em;
  padding: 14px 40px;
}

/* ===================================
   FOOTER
==================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 36px;
  margin-top: 54px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -3px 24px 0 #267A4A12;
  font-size: 1em;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 21px;
}
.footer-logo img {
  width: 78px;
  height: auto;
  filter: drop-shadow(0 2px 9px #fffbe7cc);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fffbe7;
  padding: 2px 0;
  font-family: var(--font-display);
  font-size: 1em;
  border-radius: 6px;
  transition: background 0.17s, color 0.1s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-yellow);
  background: #fffbe757;
}
.footer-contact {
  color: #fffbe7;
  font-size: .98em;
  line-height: 1.5;
}
.footer-contact a {
  color: #fffbe7;
  border-bottom: 1.5px dotted #fffbe7;
  transition: color 0.19s;
}
.footer-contact a:hover {
  color: var(--color-yellow);
  border-bottom: 1.5px solid #ffe066;
}
.footer-copy {
  border-top: 1.5px solid #e3f8e6;
  color: #e3f8e6;
  padding: 17px 0;
  text-align: center;
  font-size: 0.98em;
  font-family: var(--font-display);
}

/* ===================================
   UTILITY CLASSES
==================================== */
@media (max-width: 1110px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 870px) {
  .container {
    max-width: 690px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav, .footer-main {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {

  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.25em;
  }
  h3 {
    font-size: 1.02em;
  }
  .hero h1 {
    font-size: 1.5em;
  }
  .hero .container,
  .hero .content-wrapper {
    padding: 0;
  }
  .section {
    padding: 25px 8px;
    margin-bottom: 35px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .services-list, .card-container, .tips-list {
    gap: 13px;
  }
  .card, .testimonial-card, .feature-grid li {
    min-width: 125px;
    padding: 18px 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 22px;
    padding-bottom: 9px;
    align-items: flex-start;
  }
  .footer-contact {
    font-size: 0.96em;
  }
  .footer-logo img {
    width: 58px;
  }
}
@media (max-width: 660px) {
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .footer-logo img {
    width: 42px;
  }
  .section {
    padding: 16px 0;
    margin-bottom: 25px;
  }
  .feature-grid li,.card,.testimonial-card,.tips-list li {
    min-width: unset;
    max-width: 99vw;
    padding: 13px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    padding: 12px 7px 14px 6px;
    gap: 8px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    font-size: 1em;
  }
}

/* Responsive alignment for text-image-section */
@media (max-width: 820px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Typography fix for small screens */
@media (max-width: 390px) {
  h1, .hero h1 {
    font-size: 1.18em;
  }
  p, li, a, span, td, th, input, textarea {
    font-size: 0.98em;
  }
}

/* ===================================
   MISC ANIMATIONS AND MICRO-INTERACTIONS
==================================== */
.button-bounce {
  animation: button-bounce 1.1s 0s 1;
}
@keyframes button-bounce {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.12); }
  50% { transform: scale(0.88); }
  75% { transform: scale(1.03); }
}

.feature-grid li, .card, .testimonial-card, .tips-list li {
  animation: popin 0.7s cubic-bezier(.8,1.6,.92,1.04) both;
}

/* Some fun colored shadows for playful vibe */
.card, .feature-grid li {
  box-shadow: 0 4px 16px #ffe06615, 0 2px 7px #38b5a712;
}

/* Section titles with fun underlines/decoration */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 7px;
  width: 56px;
  background: var(--color-funpink);
  border-radius: 9px;
  margin: 8px 0 0 0;
  opacity: 0.3;
}

/* Special Trust Factor List & About-trust */
.trust-factors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 9px #ffe06625;
  padding: 11px 15px;
}
.about-trust h3 {
  color: var(--color-bright);
  font-size: 1.14em;
  font-family: var(--font-display);
}
/* About page, feature items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List paddings on all text-section ul/ol for consistency */
.text-section ul,
.text-section ol {
  padding-left: 30px;
  margin-bottom: 10px;
}

/* Thank you section */
.thank-you .cta.primary {
  margin-top: 18px;
}

/* Table responsive overflow */
@media (max-width: 600px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}

/* ===============
   END OF CSS
================ */
