/*---------------------------------------
  CSS RESET & BASE STYLES
---------------------------------------*/
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, menu, 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;
  outline: 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;
  background: #F5F8FA;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #1565C0;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
a:focus {
  outline: 2px solid #FFB300;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}

/*---------------------------------------
  BRAND TYPOGRAPHY
---------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1565C0;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h1 { font-size: 2.7rem; line-height: 1.05; margin-bottom: 16px; }
h2 { font-size: 2rem;  line-height: 1.2;  margin-bottom: 12px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.1rem; }

p, li, span, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFB300;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

/* FUN/PLAYFUL TYPOGRAPHY */
.cta-primary, .cta-secondary, button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.025em;
  font-weight: 700;
}

/*---------------------------------------
  BRAND COLOR SCHEME
---------------------------------------*/
:root {
  --primary: #1565C0;
  --accent: #FFB300;
  --secondary-bg: #F5F8FA;
  --footer-bg: #1565C0;
  --section-bg: #FEF9EC;
  --text-dark: #222;
  --text-inverse: #fff;
  --card-bg: #fff;
  --testimonials-bg: #fffbe9;
  --shadow: 0 4px 24px 0 rgba(21,101,192,0.08),0 1.5px 5px rgba(255,179,0,0.07);
}

/*---------------------------------------
  CONTAINER & LAYOUT
---------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: 21px;
  box-shadow: 0 2px 16px 0 rgba(21,101,192,0.05);
  position: relative;
}

/*---------------------------------------
 HEADER / NAVIGATION
---------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(21,101,192,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 74px;
}
.logo img {
  height: 38px;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1);
}
.logo:hover img {
  transform: rotate(-7deg) scale(1.08);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-right: 12px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1565C0;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 18px;
  transition: background 0.22s, color 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFEDA9;
  color: #FFB300;
}

.cta-primary {
  background: linear-gradient(90deg, #FFB300 0%, #FFD567 100%);
  color: #1565C0;
  padding: 12px 34px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 2.5px 10px 0 rgba(255,179,0,.18);
  transition: background .21s, color .17s, box-shadow .24s;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFD567 0%, #FFB300 100%);
  color: #1565C0;
  box-shadow: 0 5px 20px 0 rgba(255,179,0,.23);
  transform: scale(1.05) rotate(-2deg);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  background: #FFB300;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background .2s, color 0.18s;
  box-shadow: 0 1.5px 6px 0 rgba(21,101,192,0.06);
  cursor: pointer;
  z-index: 103;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #1565C0;
  color: #FFB300;
}

/*---------------------------------------
 MOBILE MENU
---------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 32px 0 rgba(21,101,192,0.11);
  transform: translateX(-100vw);
  z-index: 1500;
  transition: transform 0.38s cubic-bezier(.75,0,.25,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFB300;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.9rem;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  cursor: pointer;
  transition: background .2s, color 0.18s;
  box-shadow: 0 2px 8px 0 rgba(21,101,192,0.08);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1565C0;
  color: #FFB300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 90px 36px 32px 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #1565C0;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid #E0EAF3;
  transition: background .2s, color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF3D2;
  color: #FFB300;
}

@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
}

@media (max-width: 900px) {
  header .container { gap: 12px; }
  .main-nav { display: none; }
  .cta-primary { margin-left: 5px; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  header .container {
    height: 60px;
    padding: 0 11px;
  }
  .logo img {
    height: 29px;
  }
}

/*---------------------------------------
 SECTIONS, CARDS & COMMON LAYOUTS
---------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 19px;
  padding: 32px 28px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .22s;
  position: relative;
  min-width: 230px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(21,101,192,0.17),0 2.5px 18px rgba(255,179,0,0.11);
  transform: scale(1.032) rotate(-1deg);
  z-index: 2;
}

.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;
  background: var(--card-bg);
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .19s;
  position: relative;
}
.feature-item:hover {
  box-shadow: 0 8px 25px 0 rgba(255,179,0,0.14);
  transform: translateY(-2px) scale(1.015);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 24px;
  }
  .card, .feature-item {
    padding: 22px 11px;
  }
}
@media (max-width: 600px) {
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/*---------------------------------------
 HERO SECTIONS
---------------------------------------*/
.hero {
  min-height: 340px;
  background: linear-gradient(90deg, #FFEDA9 0%, #FFE355 100%);
  box-shadow: 0 4px 24px 0 rgba(255,179,0,.07);
  border-radius: 0 0 34px 34px;
  padding: 48px 0 40px 0;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  display: flex;
}
.hero h1 {
  font-size: 2.8rem;
  color: #1565C0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero .cta-primary {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .hero {
    padding: 29px 0 24px 0;
    min-height: 200px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 1.5rem;
 }
}

/*---------------------------------------
  FEATURES, BENEFITS, SERVICES
---------------------------------------*/
.feature-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature, .services-list li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 16px 0 rgba(21,101,192,0.08);
  padding: 24px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 215px;
  transition: box-shadow .22s, transform .16s;
  position: relative;
}
.feature:hover, .services-list li:hover {
  box-shadow: 0 10px 32px 0 rgba(255,179,0,0.14);
  transform: scale(1.021) rotate(-1.5deg);
  z-index: 2;
}
.feature img, .services-list li img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #FFEDA9;
  box-shadow: 0 1.5px 11px 0 rgba(255,179,0,0.12);
  padding: 6px;
  animation: playfulJump 2.1s infinite cubic-bezier(.68,-0.6,.32,1.6);
}
@keyframes playfulJump {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-7px) scale(1.05) rotate(-5deg); }
  50% { transform: translateY(0) scale(1.12) rotate(4deg); }
  75% { transform: translateY(-5px) scale(1.01) rotate(-3deg); }
}
.service-price, .feature p strong {
  color: #1565C0;
  font-size: 1.1em;
}

.benefits-list, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.benefits-list li, .values-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1em;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(21,101,192,0.05);
  padding: 15px 18px;
  min-width: 190px;
  margin-bottom: 20px;
  font-weight: 500;
}
.benefits-list li img, .values-list li img {
  width: 34px;
  height: 34px;
  animation: playfulJump 3s infinite .27s cubic-bezier(.68,-0.6,.32,1.6);
}
@media (max-width: 600px) {
  .benefits-list, .values-list {
    flex-direction: column;
    gap: 11px;
  }
  .feature-grid, .services-list {
    flex-direction: column;
    gap: 14px;
  }
}

/*---------------------------------------
  CATEGORY TILES, GUIDELISTS
---------------------------------------*/
.category-tiles, .guides-list, .trend-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 13px;
}
.category-tiles li {
  background: #fffbe9;
  border: 2.5px solid #FFB300;
  border-radius: 11px;
  padding: 20px 18px 13px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(255,179,0,0.10);
  transition: box-shadow .21s, border .18s, transform .16s;
}
.category-tiles li:hover, .category-tiles li:focus {
  box-shadow: 0 8px 23px 0 rgba(255,179,0,0.14);
  border-color: #1565C0;
  transform: scale(1.07) rotate(-3deg);
}
.category-tiles li img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.category-tiles li span {
  font-weight: 700;
  color: #1565C0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.guides-list li, .trend-list li, .workshop-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  flex: 1 1 220px;
  transition: box-shadow .18s, transform .15s;
  margin-bottom: 20px;
}
.guides-list li:hover, .trend-list li:hover, .workshop-list li:hover {
  box-shadow: 0 5px 21px 0 rgba(21,101,192,0.09);
  transform: translateY(-2.5px) scale(1.025);
}
.workshop-list li img {
  width: 36px; height: 36px; margin-bottom: 7px;
}
.workshop-list li h3 {
  font-size: 1.12rem;
}

@media (max-width: 600px) {
  .category-tiles, .guides-list, .trend-list, .workshop-list {
    flex-direction: column;
    gap: 10px;
  }
}

/*---------------------------------------
  TESTIMONIALS
---------------------------------------*/
.testimonial-slider, .workshop-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 13px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 17px;
  background: var(--testimonials-bg);
  box-shadow: 0 3.5px 18px 0 rgba(255,179,0,0.12);
  min-width: 230px;
  flex: 1 1 230px;
  transition: box-shadow .21s, transform .12s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px 0 rgba(21,101,192,0.18);
  transform: scale(1.035) rotate(1.5deg);
}
.testimonial-card p {
  color: #222;
  font-size: 1.07em;
  font-style: italic;
  margin: 0;
  text-align: center;
  line-height: 1.45;
}
.testimonial-card .testimonial-name {
  font-weight: 700;
  color: #1565C0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 2.6px;
}
.rating-stars img {
  width: 21px;
  height: 21px;
  animation: playfulJump 2.7s infinite .77s cubic-bezier(.68,-0.6,.32,1.6);
}

@media (max-width: 600px) {
  .testimonial-slider, .workshop-testimonials {
    flex-direction: column;
    gap: 12px;
  }
}

/*---------------------------------------
  TIMELINE (ABOUT PAGE)
---------------------------------------*/
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.timeline-point {
  background: #fff;
  padding: 15px 19px;
  border-radius: 11px;
  box-shadow: 0 1.5px 9px 0 rgba(21,101,192,0.06);
  position: relative;
  margin-bottom: 14px;
  font-size: 1.06rem;
}
.timeline-point strong {
  color: #FFB300;
  font-weight: 700;
}

/*---------------------------------------
  MAP & CONTACT DETAILS (KONTAKT)
---------------------------------------*/
.contact-details {
  background: #fff;
  border-radius: 11px;
  padding: 18px 14px;
  margin-bottom: 20px;
  color: #1565C0;
  box-shadow: var(--shadow);
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.map-embed img {
  max-width: 310px;
  border-radius: 11px;
  box-shadow: 0 1.5px 10px 0 rgba(21,101,192,0.09);
}
.map-embed em {
  font-size: 0.97em;
  color: #666;
  margin-top: 4px;
}

.contact-instructions {
  background: #fffbe9;
  padding: 19px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px 0 rgba(255,179,0,0.08);
}

.confirmation-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(255,179,0,0.12);
  padding: 23px 19px;
  text-align: center;
}

/*---------------------------------------
  FAQ ACCORDION
---------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(21,101,192,0.07);
  padding: 13px 17px;
  cursor: pointer;
  transition: box-shadow .18s, background .15s;
  margin-bottom: 7px;
}
.faq-item:hover, .faq-item.active {
  background: #fffae1;
  box-shadow: 0 6px 16px 0 rgba(255,179,0,0.11);
}
.faq-item h3 {
  font-size: 1.12em;
  margin-bottom: 4px;
  color: #1565C0;
  cursor: pointer;
}
.faq-answer {
  color: #222;
  font-size: 0.99em;
  display: none;
  margin-top: 6px;
}
.faq-item.active .faq-answer {
  display: block;
}

/*---------------------------------------
  INSIGHTS BLOCK (TRENDS)
---------------------------------------*/
.insight-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.insight {
  background: #fff;
  box-shadow: 0 2.5px 12px 0 rgba(21,101,192,0.075);
  border-radius: 12px;
  padding: 17px 15px;
  flex: 1 1 250px;
  margin-bottom: 20px;
}
.insight h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #FFB300;
}
.insight span {
  font-size: 0.98em;
  color: #1565C0;
}

@media (max-width: 600px) {
  .insight-blocks {
    flex-direction: column;
    gap: 10px;
  }
}

/*---------------------------------------
  SEARCH BAR (RATGEBER)
---------------------------------------*/
.search-bar {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
}
.search-bar label {
  color: #1565C0;
  font-weight: 600;
  font-size: 1.06em;
}
.search-bar input {
  padding: 9px 15px;
  border: none;
  background: #fff;
  border-radius: 7px;
  font-size: 1em;
  box-shadow: 0 1px 6px rgba(21,101,192,0.07);
  outline: none;
  width: 210px;
}
.search-bar input:disabled {
  background: #F2F6FB;
  color: #bbb;
  cursor: not-allowed;
}

/*---------------------------------------
  FOOTER
---------------------------------------*/
footer {
  background: var(--footer-bg);
  padding: 32px 0 18px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 48px;
  color: var(--text-inverse);
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  transition: color 0.18s, background 0.13s;
  font-size: 1rem;
  padding: 3px 11px;
  border-radius: 13px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFB300;
  background: rgba(255,255,255,0.13);
}
.footer-contact {
  color: #eef8ff;
  font-size: 0.99em;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 400;
}
.footer-contact a { color: #FFD763; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
footer .logo img {
  height: 27px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 7px; align-items: flex-start; }
  .footer-nav { gap: 13px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  footer{ padding: 24px 0 9px 0; margin-top: 28px; border-radius: 17px 17px 0 0;}
  .footer-nav { gap: 8px; }
}

/*---------------------------------------
 COOKIE CONSENT BANNER & MODAL
---------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe9;
  border-top: 2.5px solid #FFB300;
  box-shadow: 0 -3px 22px 0 rgba(255,179,0,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 19px 10px;
  gap: 18px;
  transition: transform .33s cubic-bezier(.4,0,.2,1), opacity .22s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  color: #222;
  font-size: 1.03em;
  max-width: 470px;
  margin-right: 14px;
}
.cookie-banner button {
  background: #FFB300;
  color: #1565C0;
  border-radius: 17px;
  border: none;
  padding: 10px 16px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05em;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .20s;
  margin-left: 6px;
  box-shadow: 0 1.5px 7px 0 rgba(255,179,0,0.10);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1565C0;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(21,101,192,0.15);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #FFB300;
  border: 2px solid #FFB300;
  margin-left: 11px;
  transition: background .16s, color .15s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFB300;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 13px 5px;
  }
  .cookie-banner .cookie-banner-text { margin-right: 0; margin-bottom: 7px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,34,34,0.29);
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe9;
  border: 2.5px solid #FFB300;
  border-radius: 15px;
  box-shadow: 0 2.5px 38px 0 rgba(255,179,0,0.15);
  padding: 31px 22px 22px 22px;
  min-width: 310px;
  max-width: 95vw;
  animation: modalIn .41s cubic-bezier(.61,-0.22,.5,1.29);
  position: relative;
}
@keyframes modalIn {
  0% { transform: translateY(65px) scale(.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #1565C0;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 17px;
}
.cookie-modal .cookie-category label {
  color: #222;
  font-size: 1.06rem;
  font-weight: 500;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #FFB300;
  margin-right: 6px;
}
.cookie-modal .cookie-category.essential label {
  color: #1565C0;
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 13px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 15px; right: 19px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: #FFB300;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 7px;
  transition: background .13s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #FFE355;
}

@media (max-width: 600px) {
  .cookie-modal { padding: 19px 6px 13px 9px; min-width: 0; }
}

/*---------------------------------------
  ANIMATIONS (BUTTONS, CARDS, ETC.)
---------------------------------------*/
button, .cta-primary, .category-tiles li,
.card, .feature, .feature-item, .testimonial-card {
  transition: box-shadow .21s, background .19s, color .19s, transform .14s;
}
/* Subtle pulse CTA animation */
.cta-primary {
  animation: playfulPulse 2.1s infinite cubic-bezier(.5,0,.5,1.15);
}
@keyframes playfulPulse {
  0%, 100% { box-shadow: 0 2.5px 11px 0 rgba(255,179,0,0.11);  }
  55%      { box-shadow: 0 7.5px 27px 0 rgba(255,179,0,.24); }
}

/*---------------------------------------
  RESPONSIVE FLEX CONTAINERS ADJUSTMENTS
---------------------------------------*/
@media (max-width: 900px) {
  .content-grid, .card-container, .feature-grid, .testimonial-slider,
  .benefits-list, .values-list, .trend-list, .guides-list {
    flex-wrap: wrap;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 5px;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 11px;
  }
  .section {
    padding: 15px 2px;
    margin-bottom: 22px;
  }
  .card, .feature, .services-list li, .feature-item, .testimonial-card {
    padding: 13px 7px;
    min-width: 0;
  }
  .insight, .timeline-point {
    padding: 9px 7px;
  }
  .hero .content-wrapper {
    gap: 11px;
  }
}

/*---------------------------------------
  EXTRA: Hide visually for scripts (JS)
---------------------------------------*/
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

/*---------------------------------------
  PLAYFUL DECORATIVE ELEMENT SUGGESTION
---------------------------------------*/
/* Fun circle/spot for decorative effect, optional; only appears at larger screens. */
@media (min-width: 1200px) {
  .section:before {
    content: '';
    position: absolute;
    right: 42px;
    top: 28px;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background: #FFB30033;
    z-index: 0;
    pointer-events: none;
    animation: playfulPulse 2.25s infinite cubic-bezier(.5,0,.5,1.05);
    opacity: 0.23;
  }
}

/*---------------------------------------
  PRINT STYLE (for accessibility)
---------------------------------------*/
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; }
  section, .card, .feature, .feature-item, .testimonial-card {
    box-shadow: none !important;
  }
}
