/* =================================================
   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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.6;
  background: #F5F6F4;
  color: #225B79;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  border: none;
  vertical-align: middle;
}
a {
  color: #225B79;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
*:focus {
  outline: 2px solid #97C1A9;
  outline-offset: 2px;
}

/* =================================================
   FONT SETUP
   ================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #225B79;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 900;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #225B79;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* Playful font touches on headings */
h1, h2, .hero h1, .hero h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 2px 2px 0 #97C1A9, 0px 3px 10px rgba(34,91,121,0.08);
  position: relative;
}

/* Bright fun palette for dynamic/playful feel */
:root {
  --primary: #225B79;
  --secondary: #97C1A9;
  --accent: #F5F6F4;
  --yellow: #FFE259;
  --pink: #F98FB0;
  --green: #43E58B;
  --blue: #51BFFA;
  --lightgray: #F3F7F9;
}

b, strong {
  color: var(--primary);
}

/* =================================================
   SHARED CONTAINER & SPACING
   ================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flexbox patterns */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(34,91,121,0.12);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 275px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 12px 32px -6px rgba(249,143,176,0.16);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,91,121,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  transform: scale(1.02) rotate(1.5deg);
  box-shadow: 0 8px 32px -8px var(--yellow);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--lightgray);
  border-radius: 18px;
  padding: 28px 20px 18px 20px;
  min-width: 220px;
  min-height: 220px;
  box-shadow: 0 2px 12px 0 rgba(34,91,121,0.07);
  transition: background 0.22s, box-shadow 0.2s, transform 0.13s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 5px;
  filter: drop-shadow(2px 4px 8px #F98FB0dd);
}
.feature-item:hover, .feature-item:focus {
  background: #FFE259;
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 32px -8px #51BFFA66;
}

.section:not(:last-child) {
  margin-bottom: 60px;
}

ul, li {
  list-style: none;
}
ul {
  padding-left: 0;
  margin: 0 0 20px 0;
}
li {
  margin-bottom: 12px;
}
/* playful list circles */
ul>li::before {
  content: '•';
  color: var(--pink);
  font-weight: bold;
  margin-right: 7px;
  font-size: 1.12em;
  vertical-align: middle;
}

/* Section backgrounds */
.hero {
  background: linear-gradient(90deg, #F5F6F4 65%, #FFE259 100%);
  padding: 68px 0 48px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.hero .cta-btn {
  margin-top: 16px;
}

.features {
  margin-bottom: 60px;
}
.services {
  margin-bottom: 60px;
}
.about {
  margin-bottom: 60px;
}
.tips {
  margin-bottom: 60px;
}
.contact {
  margin-bottom: 60px;
}
.privacy-policy, .legal, .terms, .cookies {
  margin-bottom: 60px;
}
.thank-you {
  min-height: 40vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Address block */
.address-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #225B79;
  background: #fff6;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 1px 2px 7px 0 #51BFFA18;
}
.address-block img {
  width: 28px;
  height: 28px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px #225B7921;
  font-size: 1rem;
}
.contact-details a {
  font-weight: bold;
  color: var(--primary);
  transition: color .2s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--pink);
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* ==================== CTA BUTTONS ==================== */
.cta-btn, .cta-btn:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #97C1A9;
  color: #225B79;
  border: 0;
  border-radius: 28px;
  padding: 13px 36px;
  font-size: 1.13rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px 0 #43E58B19;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, transform 0.22s;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFE259;
  color: #225B79;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px -6px #F98FB016;
}

/* Main navigation styles */
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 2px solid #97C1A922;
  padding: 10px 0px;
  z-index: 1001;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #225B79;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  transition: background .23s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F98FB0;
  color: #fff;
}
.main-nav a.cta-btn {
  margin-left: 10px;
  background: #FFE259;
  color: #225B79;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  padding: 11px 28px;
  box-shadow: 0 3px 12px 0 #51BFFA20;
  transition: background 0.23s, color 0.19s, transform 0.15s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #225B79;
  color: #fff;
  transform: scale(1.03) rotate(-2deg);
}
.main-nav img[alt="LebensBalance Regensburg"] {
  width: 56px;
  height: 56px;
  margin-right: 10px;
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 1002;
  background: #FFF;
  border: none;
  font-size: 2.1rem;
  color: #225B79;
  padding: 8px 14px;
  border-radius: 38px;
  box-shadow: 2px 2px 12px 0 #F98FB011;
  cursor: pointer;
  transition: background 0.18s, color .17s, box-shadow 0.19s, transform .12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #FFE259;
  color: #225B79;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #225B79;
  z-index: 2203;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.40s cubic-bezier(.72,-0.06,.29,1.15), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 14px 26px 0 0;
  padding: 8px 8px;
  cursor: pointer;
  z-index: 2204;
  transition: color 0.17s, background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFE259;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 70px;
  margin-left: 36px;
  font-size: 1.3rem;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 0;
  transition: color .21s;
  border-radius: 22px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFE259;
  background: #97C1A922;
}

/* ==================== FOOTER ==================== */
footer {
  background: #225B79;
  color: #fff;
  padding: 32px 0 14px 0;
  margin-top: 40px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 6px 15px;
  transition: background 0.19s, color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #97C1A9;
  color: #225B79;
}
.brand-note {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #fff;
  text-align: center;
  margin-top: 4px;
  opacity: 0.83;
}

/* ==================== SERVICE LISTS ==================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 24px 0;
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px 0 #225B7912;
}
.service-list li {
  font-size: 1.08rem;
  color: #225B79;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
}
.service-price {
  background: #97C1A9;
  color: #225B79;
  font-size: 1rem;
  border-radius: 12px;
  padding: 4px 12px;
  margin-left: 14px;
  font-weight: bold;
  opacity: .85;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: #FFF;
  padding: 48px 0 56px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.testimonial-card {
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 370px;
  background: #fff;
  color: #225B79;
  font-size: 1.11rem;
  border-radius: 18px;
  box-shadow: 0 2px 14px #51BFFA2C, 0 1.5px 5px #43E58B11;
}
.testimonial-card p {
  margin-bottom: 13px!important;
  font-style: italic;
  color: #225B79;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #51BFFA;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==================== TEAM SECTION ==================== */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.text-section {
  background: #F5F6F4;
  border-radius: 18px;
  padding: 24px 22px 18px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  box-shadow: 0 1.5px 8px #225B7912;
  color: #225B79;
}

/* ==================== STYLE INTERACTIONS ==================== */
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

button:focus-visible {
  outline: 2px solid #F98FB0;
}

/* Fun hover for playful style elements */
.cta-btn:active {
  transform: translateY(1.5px) scale(.97);
}

a, button, .cta-btn {
  transition: color .16s, background .2s, transform 0.16s, box-shadow 0.17s;
}

/* Micro-interactions */
.card, .feature-item, .testimonial-card, .cta-btn {
  transition: box-shadow 0.23s, transform 0.18s, background 0.2s, color 0.16s;
}

/* Decorative bubbles for dynamic playful hero */

.hero::before {
  width: 180px;
  height: 180px;
  left: -60px;
  top: 28px;
  background: #F98FB0;
  animation: hero-bubble-1 13s linear infinite alternate;
}
.hero::after {
  width: 140px;
  height: 140px;
  right: -50px;
  top: 60px;
  background: #43E58B;
  animation: hero-bubble-2 21s linear infinite alternate;
}
@keyframes hero-bubble-1 {
  0% { top: 28px; left: -60px; }
  55% { top: 60px; left: 28vw; }
  100% { top: 36px; left: 14vw; }
}
@keyframes hero-bubble-2 {
  0% { top: 60px; right: -50px; }
  60% { top: 44px; right: 17vw; }
  100% { top: 82px; right: 9vw; }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #225B79;
  color: #fff;
  z-index: 3002;
  width: 100vw;
  box-shadow: 0 -4px 22px 0 #F98FB026, 0 -1px 8px 0 #51BFFA10;
  padding: 20px 8px 14px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  animation: slide-in-bottom 0.7s  cubic-bezier(.42,0,.41,1.22);
}
@keyframes slide-in-bottom {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-consent-btn, .cookie-settings-btn {
  background: #FFE259;
  color: #225B79;
  border: none;
  border-radius: 22px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 2px;
  margin-right: 2px;
  transition: background 0.19s, color 0.17s, transform .14s, box-shadow 0.18s;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #97C1A9;
  color: #225B79;
  transform: scale(1.07);
}
.cookie-consent-btn.reject {
  background: #F98FB0;
  color: #fff;
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #51BFFA;
  color: #fff;
}
.cookie-settings-btn {
  background: #51BFFA;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F98FB0;
  color: #fff;
}

/* Cookie preference modal */
.cookie-preferences-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4000;
  background: rgba(34,91,121,0.14);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: cookie-modal-fade-in .31s cubic-bezier(.49,.06,.60,1.19);
}
@keyframes cookie-modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-preferences-content {
  background: #fff;
  color: #225B79;
  border-radius: 23px;
  padding: 36px 30px 30px 30px;
  min-width: 290px; max-width: 420px;
  box-shadow: 0 7px 30px #97C1A933, 0 1.3px 12px #F98FB012;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 1.08rem;
  animation: pop-up .23s cubic-bezier(.71,-0.12,.61,1.01);
}
@keyframes pop-up {
  0% { transform: scale(0.7) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-preferences-content h2 {
  margin-bottom: 10px;
  font-size: 1.38rem;
  font-weight: 700;
  color: #225B79;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F3F7F9;
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #51BFFA;
  width: 22px;
  height: 22px;
}
.cookie-category.essential {
  opacity: 0.65;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 14px;
  background: none;
  border: none;
  color: #225B79;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F98FB0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .content-grid, .testimonial-slider, .testimonial-list, .team-members {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.25rem; }
  .main-nav {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    font-size: 0.97rem;
  }
  .main-nav a {
    font-size: 0.94rem;
    padding: 7px 10px;
    border-radius: 16px;
  }
  .main-nav img[alt="LebensBalance Regensburg"] {
    width: 38px;
    height: 38px;
    margin-right: 6px;
  }
  .cta-btn, .main-nav a.cta-btn, .cookie-consent-btn, .cookie-settings-btn {
    font-size: 0.93rem;
    padding: 9px 19px;
  }
  .footer-menu {
    gap: 8px;
    font-size: 0.93rem;
  }
  .hero {
    padding: 44px 0 30px 0;
  }
  .container {
    padding: 0 7px;
  }
  .feature-grid,
  .card-container, .testimonial-slider, .testimonial-list, .team-members {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper,
  .service-list,
  .testimonials .content-wrapper {
    gap: 11px;
  }
  .feature-item,
  .testimonial-card,
  .card {
    padding: 18px 12px;
    min-width: 0;
    font-size: 0.98rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .address-block {
    font-size: 0.98rem;
    padding: 9px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 14px;
  }
  .cookie-preferences-content {
    max-width: 99vw;
    padding: 21px 8px 24px 8px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 0.99rem; }
  .testimonial-card, .feature-item, .card {
    font-size: 0.89rem;
    padding: 7px 6px;
  }
  .address-block, .contact-details > div {
    font-size: 0.9rem;
    padding: 6px 6px;
  }
}

/* ==================== MISCELLANEOUS ==================== */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #F3F7F9;
}
::-webkit-scrollbar-thumb {
  background: #97C1A9;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #51BFFA;
}

hr {
  border: 0;
  border-top: 1.5px dashed #97C1A9;
  margin: 32px 0 18px 0;
  opacity: .3;
}

/* Accessibility: always visible label/touch targets */
label {
  font-size: 1.02rem;
  margin-bottom: 6px;
  display: block;
}
input, textarea, select {
  font: inherit;
  border-radius: 12px;
  border: 1.2px solid #97C1A9;
  padding: 8px 11px;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #225B79;
  box-shadow: 0 2px 8px #51BFFA18;
}

input[type="checkbox"], input[type="radio"] {
  margin: 0 8px 0 0;
  width: 1.2em;
  height: 1.2em;
  accent-color: #97C1A9;
}
form button, form input[type="submit"] {
  background: #97C1A9;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 16px;
  transition: background .19s, color 0.18s, transform .13s;
  cursor: pointer;
}
form button:hover, form input[type="submit"]:hover {
  background: #225B79;
  color: #FFE259;
}

/* ==================== PRINT ==================== */
@media print {
  body, .container, .content-wrapper, .main-nav, .footer-menu, .mobile-menu, .cookie-consent-banner {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    border: none !important;
  }
  .main-nav, .mobile-menu, .footer-menu, .cookie-consent-banner {
    display: none !important;
  }
  .section, .hero, .about, .contact, .services, .features, .tips, .privacy-policy, .legal, .terms, .cookies {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ================ END OF STYLE.CSS =============== */
