/* Reset & Base Styles */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #124559;
  background-color: #E6EAE6;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  transition: background 0.25s;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #124559;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E88D24;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
::-webkit-input-placeholder { color: #777; }
::-moz-placeholder { color: #777; }
:-ms-input-placeholder { color: #777; }
::placeholder { color: #777; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #124559;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  color: #E88D24;
  text-shadow: 1px 3px 0 #E6EAE6, 0 3px 15px rgba(232,141,36,0.09);
}
h2 {
  font-size: 2rem;
  color: #124559;
}
h3 {
  font-size: 1.3rem;
  color: #E88D24;
}
h4 { font-size: 1.1rem; }

p, span, li {
  font-size: 1rem;
}
b {
  font-weight: bold;
}
.cta-link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E88D24;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
  display: inline-block;
  position: relative;
}
.cta-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin 0.2s, opacity 0.2s;
  opacity: 0.7;
}
.cta-link:hover::after {
  margin-left: 14px;
  opacity: 1;
}

/* Containers & Layouts */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(18,69,89,0.06);
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(18,69,89,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  color: #124559;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E88D24;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(232,141,36,0.07);
}

.cta-btn {
  background: #E88D24;
  color: #fff;
  border-radius: 32px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 4px 20px 0 rgba(232,141,36,0.19);
  transition: background 0.22s, transform 0.15s, box-shadow 0.2s;
  margin-left: 18px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: -40%; top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 180%; height: 80%;
  background: rgba(255,255,255,0.13);
  filter: blur(16px);
  pointer-events: none;
  border-radius: 40px;
  z-index: 1;
  transition: opacity 0.3s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #b45b00;
  color: #fff;
  transform: translateY(-2px) scale(1.044);
  box-shadow: 0 1px 25px 0 rgba(232,141,36,0.23) !important;
}

.cta {
  background: #E88D24;
  border-radius: 20px;
}
.cta .cta-btn {
  background: #fff;
  color: #E88D24;
  border: 2px solid #E88D24;
  box-shadow: 0 2px 16px 0 rgba(232,141,36,0.11);
  margin: 0;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #E88D24;
  color: #fff;
}

/* Hamburger & Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #E88D24;
  color: #fff;
  font-size: 2.1rem;
  padding: 7px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(232,141,36,0.15);
  margin-left: 6px;
  transition: background 0.2s, color 0.2s;
  z-index: 16;
}
.mobile-menu-toggle:active { background: #b45b00; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.42,0,0.58,1);
  box-shadow: 0 2px 32px 0 rgba(18,69,89,0.21);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 24px;
  background: #E88D24;
  color: #fff;
  border-radius: 16px;
  font-size: 2.0rem;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(232,141,36,0.17);
  z-index: 3;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #b45b00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 56px;
}
.mobile-nav a {
  color: #124559;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E88D24;
  color: #fff;
}
@media (max-width: 1024px) {
  .mobile-menu { display: flex; }
}

/* Hero Section */
.hero {
  background: linear-gradient(96deg, #E6EAE6 35%, #FFF6E6 100%);
  padding: 60px 0 52px 0;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  animation: heroFadeIn 1s cubic-bezier(0.42,0,0.58,1);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  gap: 24px;
}
.hero h1 {
  color: #E88D24;
  font-size: 2.6rem;
  text-align: center;
}
.hero p {
  color: #124559;
  font-size: 1.22rem;
  font-weight: 400;
  text-align: center;
  max-width: 574px;
}

/* Features & Cards */
.features .content-wrapper { gap: 24px; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 20px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  box-shadow: 0 3px 16px 0 rgba(18,69,89,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.22s;
  border: 2px solid #E6EAE6;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 28px rgba(232,141,36,0.14);
  transform: translateY(-5px) scale(1.033);
  border-color: #E88D24;
}
.feature-grid img {
  width: 48px; height: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(2px 4px 2px #E6EAE6);
  transition: filter 0.2s;
}
.feature-grid > div:hover img {
  filter: drop-shadow(0 8px 12px #E88D24);
}
.features h2 {
  font-size: 2.1rem;
}

/* Service Cards & Lists */
.services-overview .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.services-overview .service-cards > div {
  background: #FFF6E6;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(232,141,36,0.07);
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 320px;
  padding: 20px 20px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.20s, border 0.14s;
  border: 2px solid #FFE2C7;
}
.services-overview .service-cards > div:hover {
  box-shadow: 0 7px 28px rgba(232,141,36,0.18);
  border-color: #E88D24;
  transform: translateY(-6px) scale(1.025);
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
  padding-top: 6px;
  list-style: disc inside;
}
.benefits-list li {
  background: #E6EAE6;
  border-radius: 12px;
  padding: 8px 14px;
  color: #124559;
  font-weight: 600;
  font-size: 1rem;
}

/* Testimonials */
.testimonials .content-wrapper { gap: 28px; align-items: flex-start; }
.testimonials h2 {
  color: #E88D24;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(18,69,89,0.09);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 2px solid #E6EAE6;
  position: relative;
  min-width: 220px; 
  max-width: 520px;
  width: 100%;
  font-style: italic;
  color: #124559;
}
.testimonial-card p {
  font-size: 1.06rem;
  line-height: 1.62;
  color: #124559;
}
.testimonial-card span {
  color: #E88D24;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
}
.ratings-snippet {
  margin-top: 4px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #b45b00;
  background: #fff8ef;
  border-radius: 18px;
  padding: 12px 20px;
  display: inline-block;
}

/* About & Values */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  list-style: circle inside;
  margin-bottom: 12px;
}

.text-section, .thank-you-message, .next-steps-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

/* Tipps - Cards & Grids */
.tip-cards, .tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.tip-cards > div, .tip-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(18,69,89,0.08);
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 320px;
  padding: 18px 16px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid #e6eae6;
  transition: box-shadow 0.16s, transform 0.18s, border-color 0.19s;
}
.tip-cards > div:hover, .tip-grid > div:hover {
  box-shadow: 0 7px 25px rgba(232,141,36,0.14);
  border-color: #E88D24;
  transform: translateY(-4px) scale(1.017);
}
.actionable-checklist, .quick-guides {
  background: #FFF6E6;
  border-radius: 16px;
  padding: 16px 22px 14px 22px;
  margin-bottom: 12px;
}
.actionable-checklist ul, .quick-guides ul {
  margin-left: 8px;
  margin-bottom: 8px;
}
.actionable-checklist li, .quick-guides li {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Benefits & FAQ Grids */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.benefits-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(18,69,89,0.05);
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 320px;
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid #e6eae6;
  transition: box-shadow 0.12s, border 0.14s;
}
.benefits-grid > div:hover {
  border-color: #E88D24;
  box-shadow: 0 5px 16px #FFE2C7;
}
.benefits-grid img {
  width: 44px;
  margin-bottom: 4px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
.faq-list li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 2px 8px rgba(18,69,89,0.06);
  border: 2px solid #E6EAE6;
}
.faq-list h3 {
  color: #E88D24;
  font-size: 1.08rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(18,69,89,0.08);
  padding: 20px 20px 18px 20px;
  border: 2px solid #E6EAE6;
}

/* Cards, Grids, and Flex Alignment */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(18,69,89,0.08);
  padding: 24px 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Various Lists & Sections */
.habit-checklists, .routine-examples {
  background: #FFF6E6;
  border-radius: 14px;
  padding: 16px 18px 14px 18px;
  margin-bottom: 14px;
}
.habit-checklists ul, .routine-examples ul {
  margin-bottom: 8px;
}
.habit-checklists li, .routine-examples li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-highlight {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(18,69,89,0.08);
  padding: 24px 24px 20px 24px;
  margin-bottom: 12px;
  border: 2px solid #FFE2C7;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.service-highlight a.cta-btn {
  margin-top: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.map-snippet {
  background: #FFF6E6;
  border-radius: 18px;
  padding: 18px 22px 12px 22px;
  color: #b45b00;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.thank-you-message, .next-steps-info {
  align-items: flex-start;
  gap: 14px;
}
.next-steps-info ul {
  list-style: disc inside;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #124559;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -8px 24px rgba(18,69,89,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.footer-logo {
  flex: 0 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}
.quick-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.quick-links a:hover, .quick-links a:focus {
  color: #E88D24;
}
.footer-contact {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
footer img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px #E88D24);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #E6EAE6;
  color: #124559;
  border-top: 2px solid #E88D24;
  box-shadow: 0 -4px 18px rgba(18,69,89,0.06);
  padding: 22px 32px 18px 32px;
  z-index: 5000;
  font-size: 1.05rem;
  animation: cookieBannerIn 0.75s cubic-bezier(0.42,0,0.58,1);
  min-height: 70px;
}
@keyframes cookieBannerIn {
  from { transform: translateY(130%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-consent-banner .cookie-btn-set {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 10px 18px;
  border: none;
  margin-left: 0;
  background: #E88D24;
  color: #fff;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-banner button.cookie-btn-reject {
  background: #fff;
  color: #b45b00;
  border: 2px solid #b45b00;
}
.cookie-consent-banner button.cookie-btn-settings {
  background: #E6EAE6;
  color: #124559;
  border: 2px solid #E88D24;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #b45b00;
  color: #fff;
}
.cookie-consent-banner button.cookie-btn-settings:hover, .cookie-consent-banner button.cookie-btn-settings:focus {
  background: #FFF6E6;
  color: #E88D24;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,69,89,0.22);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #FFF6E6;
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(18,69,89,0.16);
  padding: 36px 34px 28px 34px;
  max-width: 480px;
  width: 90vw;
  color: #124559;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: #E88D24;
  color: #fff;
  border-radius: 16px;
  font-size: 1.6rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #b45b00;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(18,69,89,0.07);
  border: 2px solid #E6EAE6;
  margin-bottom: 6px;
}
.cookie-category-label {
  font-weight: 700;
  color: #E88D24;
  font-size: 1rem;
}
.cookie-toggle {
  width: 46px;
  height: 22px;
  border-radius: 11px;
  background: #E6EAE6;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-toggle.on {
  background: #E88D24;
}
.cookie-toggle-slider {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  border-radius: 50%;
  transition: left 0.16s;
  box-shadow: 0 2px 8px rgba(18,69,89,0.11);
}
.cookie-toggle.on .cookie-toggle-slider {
  left: 25px;
}
.cookie-category-desc {
  font-size: 0.98rem;
  color: #7d8fa5;
  margin-top: 1px;
  margin-bottom: 0;
  font-weight: 400;
}

/* Responsive Layouts */
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .footer-logo, .footer-contact, .quick-links, footer .content-wrapper {
    align-items: flex-start !important;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature-grid,
  .services-overview .service-cards,
  .benefits-grid,
  .tip-cards, .tip-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 26px;
    min-height: 260px;
    border-radius: 0 0 28px 28px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .section {
    padding: 26px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .feature-grid,
  .services-overview .service-cards,
  .benefits-grid,
  .testimonial-card,
  .faq-list,
  .tip-cards,
  .tip-grid,
  .card-container,
  .content-grid {
    gap: 15px !important;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testimonial-card {
    padding: 18px 10px;
    max-width: 98vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    padding: 14px 10px 8px 10px;
  }
}

/* Playful & Dynamic Animations */
@keyframes wiggle {
  0% { transform: rotate(-2deg) scale(1.01); }
  50% { transform: rotate(3deg) scale(1.036); }
  100% { transform: rotate(-2deg) scale(1.01); }
}
.feature-grid > div:hover, .services-overview .service-cards > div:hover, .tip-cards > div:hover, .tip-grid > div:hover {
  animation: wiggle 0.45s 1;
}
.cta-btn {
  animation: wiggle 2.5s infinite cubic-bezier(0,0.55,0.45,1);
  animation-delay: 0.45s;
}

/* Fun/Energetic Fonts & Colorful Pills */
.benefits-list li,
.actionable-checklist li,
.quick-guides li,
.routine-examples li,
.habit-checklists li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #E6EAE6;
  border-radius: 10px;
  display: inline-block;
  padding: 6px 14px;
  margin: 3px 8px 6px 0;
  font-size: 0.98rem;
  color: #124559;
}

/* Micro-interactions & Transitions */
a, input, button, .cta-btn, .feature-grid > div, .services-overview .service-cards > div,
.tip-cards > div, .tip-grid > div, .benefits-grid > div, .faq-list li,
.service-list li, .card {
  transition: box-shadow 0.18s, background 0.15s, border 0.18s, color 0.17s, transform 0.16s;
}

/* Hide elements visually for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 11px;
  background: #E6EAE6;
}
::-webkit-scrollbar-thumb {
  background: #E88D24;
  border-radius: 8px;
}

/* Custom Selection Colors */
::selection {
  background: #FAE7CF;
  color: #124559;
}

/* Utility Classes for Gaps and Spacing */
.gap-20 { gap: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.pb-40 { padding-bottom: 40px !important; }

/* Always last: Fix absolute/relative overlap for only image/deco */
.card img[alt*="deco"], .feature-grid img[alt*="deco"], .service-cards img[alt*="deco"] {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
