/*---- 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,
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.5;
  background: #F8FAFF;
  color: #19233D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #2158A6;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #FFD600;
}
ul {
  list-style: disc inside;
  margin-left: 0;
}
strong {
  font-weight: 700;
}
/*---- BRAND COLOR VARIABLES ----*/
:root {
  --primary: #2158A6;
  --secondary: #FFD600;
  --accent: #FFFFFF;
  --blue-light: #71A8F7;
  --yellow-light: #FFF59D;
  --pink: #F874A6;
  --green: #1FD7A3;
  --shadow: rgba(20,70,180,0.07);
  --shadow-card: 0 4px 32px rgba(33,88,166,0.08);
}

/*------------ TYPOGRAPHY & HEADINGS ------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.625rem;
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 2px 2px 0 var(--secondary), 0 2px 12px var(--shadow);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
p.subheadline {
  font-size: 1.125rem;
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

/*------------ LAYOUT CONTAINERS ------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
}
.content-wrapper {
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.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;
}
/* Responsive changes for .text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/*------------ HEADER & NAVIGATION ------------*/
header {
  width: 100%;
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  z-index: 22;
}
header > a img {
  height: 56px;
  margin: 16px 0 12px 18px;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  margin-bottom: 8px;
}
nav.main-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 15px;
  color: var(--accent);
  background: transparent;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px var(--yellow-light);
}
nav.main-nav a.cta-main {
  background: var(--secondary);
  color: var(--primary);
  font-size:1.07rem;
  font-weight:800;
  padding: 10px 22px;
  margin-left: 18px;
  border-radius: 22px;
  box-shadow: 0 2px 18px var(--shadow);
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  outline: 0;
}
nav.main-nav a.cta-main:hover, nav.main-nav a.cta-main:focus {
  background: var(--pink);
  color: var(--accent);
  box-shadow: 0 4px 28px var(--pink);
}

/* Burger/hamburger menu toggle for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 40px;
  padding: 9px 17px;
  margin: 15px 14px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  z-index: 31;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pink);
  color: #fff;
}

/* Mobile Menu Overlay Style */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  padding: 18px 0 10px 0;
  border: none;
  align-self: flex-end;
  margin: 0 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 12px;
  width: 80%;
  text-align: center;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Hide main menu/show burger on mobile */
@media (max-width: 960px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header > a img {
    margin-left: 8px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.08rem;
    padding: 11px 0;
  }
}

/*------------ HERO SECTION ------------*/
.hero {
  background: var(--secondary);
  padding-top: 38px;
  padding-bottom: 38px;
  box-shadow: 0 6px 30px var(--shadow);
  background-image:
    radial-gradient(circle at 14% 48%, var(--blue-light) 0px, rgba(255,255,255,0) 260px),
    radial-gradient(circle at 85% 22%, var(--pink) 0px, rgba(255,255,255,0) 300px);
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  padding: 24px 10px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 1.5px 1.5px 0 var(--accent), 0 2px 6px var(--pink);
}
.hero .subheadline {
  color: var(--pink);
}

/*------------ CTA BUTTONS ------------*/
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  background: linear-gradient(90deg, var(--pink), var(--secondary));
  color: var(--primary);
  border: none;
  border-radius: 28px;
  padding: 13px 38px;
  margin-top: 22px;
  font-weight: 900;
  font-size: 1.22rem;
  box-shadow: 0 3px 18px var(--shadow),0 2px 6px var(--secondary);
  cursor: pointer;
  transition: background 0.25s, color 0.2s, box-shadow 0.25s, transform 0.1s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--secondary), var(--pink));
  color: var(--accent);
  box-shadow: 0 6px 32px var(--pink);
  transform: translateY(-2px) scale(1.04);
}

/*------------ CARDS & FEATURE AREAS ------------*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 32px 0;
  justify-content: flex-start;
}
.features-grid > div {
  background: var(--accent);
  border-radius: 24px;
  border: 3px dashed var(--secondary);
  box-shadow: 0 3px 22px var(--shadow-card);
  padding: 28px 24px 22px 24px;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.14s, box-shadow 0.18s;
  overflow: hidden;
  animation: cardPopIn 0.7s cubic-bezier(.48,1.2,.2,.94) both;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  transform: scale(1.045) rotate(-1.2deg);
  box-shadow: 0 4px 36px var(--blue-light);
  z-index: 3;
}
@keyframes cardPopIn {
  0% { opacity: 0; transform: scale(.8) translateY(38px); }
  89% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.features-grid img {
  height: 52px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 12px var(--blue-light));
  animation: iconSwing 1.45s infinite alternate ease-in-out;
}
@keyframes iconSwing {
  0% { transform: rotate(-8deg) scale(1.01); }
  100% { transform: rotate(7deg) scale(1.12); }
}
.feature-price {
  margin-top: 7px;
  color: var(--pink);
  background: var(--yellow-light);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 4px 12px;
  box-shadow: 0 1px 4px var(--yellow-light);
}
.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 32px 0 0 0;
  font-size: 1rem;
}
.feature-highlights img {
  margin-right: 5px;
  height: 22px;
}
.feature-highlights span {
  font-weight: 600;
  color: var(--primary);
  margin-right: 10px;
}

/*---- Tables for Kurse & Workshops ----*/
.services-table {
  width: 100%;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 3px 20px var(--shadow-card);
  margin: 16px 0 26px 0;
  border-collapse: collapse;
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
}
.services-table thead tr {
  background: var(--primary);
  color: var(--accent);
}
.services-table th, .services-table td {
  padding: 12px 9px;
  border-bottom: 2px solid var(--yellow-light);
  text-align: left;
}
.services-table th {
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  font-size: 1.04rem;
}
.services-table tbody tr:nth-child(even) {
  background: #F5FAFC;
}
.services-table tbody tr:hover {
  background: var(--yellow-light);
  transition: background 0.22s;
}
.services-icons {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  align-items: center;
}
.services-icons img {
  height: 30px;
}

/*------------ CARDS & TESTIMONIALS ------------*/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--accent);
  color: #1B2352;
  border-radius: 18px;
  box-shadow: 0 2px 22px var(--shadow-card);
  border: 2.5px solid var(--pink);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 18px 24px;
  min-width: 220px;
  max-width: 420px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.1s;
  position: relative;
  animation: testimonialBounce 1.25s cubic-bezier(.49,1.6,.14,.98) both;
}
@keyframes testimonialBounce {
  0% { opacity: 0; transform: scale(.82) translateY(48px); }
  78% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.testimonial-card p {
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
  color: #1B2352;
}
.testimonial-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
.testimonial-meta span {
  font-size: 1.15rem;
  color: var(--yellow-light);
}

/*------------ FOOTER ------------*/
footer {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  padding: 0 0 0 0;
  box-shadow: 0 -2px 14px var(--shadow);
  min-height: 110px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 26px 18px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.13s, color .17s;
}
.footer-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.footer-address, .footer-contact, .footer-legal {
  font-size: 0.98rem;
  margin-bottom: 2px;
  color: var(--yellow-light);
}
.footer-legal {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-legal a {
  color: var(--yellow-light);
  text-decoration: underline;
  font-size: 0.95rem;
}
.footer-legal a:hover {
  color: var(--pink);
}
.footer-bottom {
  background: #17447F;
  text-align: center;
  color: #eee;
  padding: 9px 0 8px 0;
  font-size: 0.95rem;
  letter-spacing: .01em;
}

/* Responsive Footer */
@media (max-width: 840px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/*------------ TEXT SECTION, CONTENT CARDS, AND MORE ------------*/
.text-section {
  background: var(--accent);
  border-radius: 19px;
  box-shadow: 0 1px 14px var(--shadow-card);
  padding: 32px 23px 25px 25px;
  margin-bottom: 40px;
  position: relative;
  max-width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 1px 10px var(--shadow-card);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*------------ AGE GROUPS, HIGHLIGHT BADGES ------------*/
.age-groups {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 1.09rem;
  color: var(--primary);
  font-family:'Montserrat','Comic Sans MS',cursive,sans-serif;
  font-weight:600;
}

/*------------ RESPONSIVE DESIGN AND LAYOUTS ------------*/
@media (max-width:1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width:980px) {
  .features-grid, .testimonials, .card-container {
    gap: 18px;
  }
  .footer-content {
    padding: 18px 6px;
  }
}
@media (max-width:740px) {
  .features-grid, .testimonials, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div, .testimonial-card {
    min-width: 0;
    max-width: unset;
    width: 100%;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width:480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.27rem; }
  .footer-content {
    gap: 6px;
  }
  .hero {
    padding-top:15px;
    padding-bottom:15px;
  }
}

/*------------ BUTTONS, INPUTS, LINKS GENERAL ------------*/
button, .cta-button {
  outline: none;
}
button:active, .cta-button:active {
  outline: 2px solid var(--pink);
}

/*------------ LISTS SPACING ETC ------------*/
ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 7px;
  font-size: 1rem;
}
ul li::marker {
  color: var(--yellow-light);
}

/*------------ FORMS, TABLES, ETC. ------------*/
input, textarea, select {
  border: 2px solid var(--primary);
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 11px;
  width: 100%;
  background: var(--accent);
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--pink);
  border-color: var(--pink);
}

/*------------ ANIMATIONS & MICRO-INTERACTIONS ------------*/
.section {
  animation: fadeInUp 1.25s cubic-bezier(.53,1.3,.31,.91) both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(70px); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}

/*--------- COOKIE CONSENT ---------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--pink);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  z-index: 3333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 -2px 38px var(--shadow);
  gap: 18px;
  animation: cookieShow .8s cubic-bezier(.51,1.2,.3,1) both;
}
@keyframes cookieShow {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0; font-size:1rem;
  max-width:620px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
}
.cookie-banner button {
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  margin-left: 0px;
  transition: background .16s, color .16s, box-shadow .16s;
  box-shadow: 0 2px 8px var(--shadow);
  outline: 0;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover {
  background: var(--green);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: var(--blue-light);
  color: var(--primary);
}
.cookie-banner .cookie-reject:hover {
  background: var(--pink);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.cookie-banner .cookie-settings:hover {
  background: var(--yellow-light);
  color: var(--primary);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(28,34,93,0.53);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s cubic-bezier(.47,1.4,.29,.98);
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.cookie-modal-content {
  min-width: 320px;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 7px 33px var(--shadow-card);
  padding: 34px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popupIn .5s cubic-bezier(.61,1.14,.28,1) both;
  max-width: 95vw;
}
@keyframes popupIn {
  0% { opacity: 0; transform: scale(.76) translateY(90px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat','Comic Sans MS',cursive, sans-serif;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--green);
  width: 19px; height: 19px;
}
.cookie-essential {
  color: #8C929F;
  font-size: .96rem;
  font-weight: 500;
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top:10px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 17px;
  background: none;
  color: var(--pink);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index:12;
}
.cookie-modal-close:hover {
  color: var(--primary);
}

/* Cookie consent on mobile */
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 24px 9px 16px 12px;
  }
}

/*------------ ERROR, INFO, SUCCESS, HINT CLASSES ------------*/
.error, .form-error {
  color: #e33750;
  background: #ffe0e8;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 7px 0 9px 0;
  font-size: 1.01rem;
}
.info, .form-info {
  color: var(--primary);
  background: var(--yellow-light);
  border-radius: 5px;
  padding: 5px 10px;
  margin: 7px 0 9px 0;
  font-size: .98rem;
}

/*------------ UTILITY CLASSES ------------*/
.mt-2 { margin-top: 9px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 10px !important; }
.mb-3 { margin-bottom: 20px !important; }
.gap-2 { gap: 10px !important; }
.gap-3 { gap: 20px !important; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/*------------ Z-INDEX LAYERING ------------*/
header { z-index: 800; position: relative; }
.mobile-menu { z-index: 1001; }
.cookie-banner { z-index: 3333; }
.cookie-modal { z-index: 4000; }

/*------------ IMAGE ICONS DECOR ------------*/
img[alt*="Icon"], img[alt*="icon"], img[alt*="Gruppe"], img[alt*="Mail"], img[alt*="Uhr"], img[alt*="Telefon"] {
  vertical-align: middle;
  margin-right: 6px;
  height: 22px;
}

/*------------ MISCELLANEOUS ------------*/
::-webkit-scrollbar {
  width: 8px; background: #E7EEF8;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}
@media (max-width:520px) {
  .services-table th, .services-table td { font-size: 0.91rem; }
  .cta-button, .main-nav a.cta-main { font-size: 1rem; padding: 10px 16px; }
  .testimonials, .features-grid { gap: 13px; }
}

/*-------- Hide outline for mouse users, show for keyboard users --------*/
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }
