/* --------------------- RESET & NORMALIZE --------------------- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F2F2F2;
  color: #203A43;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #00A7E1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF2E63;
  outline: none;
}
ul, ol {
  padding-left: 24px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203A43;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  color: #00A7E1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.1rem;
}

.subheadline {
  font-size: 1.2rem;
  color: #203A43;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

/* ------------------- VARIABLES: Vibrant/Energetic ------------------- */
:root {
  --color-primary: #203A43;
  --color-secondary: #00A7E1;
  --color-accent: #F2F2F2;
  --color-bg: #ffffff;
  --color-highlight: #FF2E63;
  --color-dark: #1A232D;
  --color-success: #15FFAB;
  --color-warning: #FFF200;
  --color-danger: #FF4B2B;
}

/* --------------------- LAYOUT & SPACING PATTERNS --------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(32,58,67,.05);
  padding: 32px 24px;
  margin-bottom: 32px;
}

/* FLEXBOX spacing requirements for various containers */
.card-container,
.feature-grid,
.service-list,
.blog-post-list,
.benefit-list,
.benefit-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 36px 0 rgba(32,58,67,.08);
  transition: transform .18s, box-shadow .18s;
}
.card:hover {
  box-shadow: 0 16px 60px 0 rgba(0,167,225,0.22);
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  color: #203A43;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(0,167,225,0.07);
  position: relative;
  transition: box-shadow .16s, transform .16s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(32,58,67, .18);
  transform: scale(1.02);
  outline: none;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------- HEADER & NAV ------------- */
header {
  background: linear-gradient(90deg, #00A7E1 0%, #FF2E63 100%);
  color: #fff;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px 20px;
  min-height: 65px;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.logo-link img { height: 48px; width: auto; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.main-nav a {
  color: #fff;
  position: relative;
  padding: 2px 4px;
  transition: color .15s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #15FFAB;
  width: 0;
  transition: width .22s cubic-bezier(.4,1,.7,1);
  margin: 2px 0 0 0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFF200;
  outline: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 99px;
  background: #fff;
  color: #203A43;
  border: 2px solid #00A7E1;
  box-shadow: 0 2px 16px 0 rgba(0,167,225,0.10);
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .18s, border .18s;
  text-transform: uppercase;
}
.cta-btn.primary {
  background: #00A7E1;
  color: #fff;
  border: 2px solid #00A7E1;
  box-shadow: 0 4px 28px 0 rgba(32,58,67,0.13);
}
.cta-btn:hover, .cta-btn:focus {
  background: #FF2E63;
  color: #fff;
  border: 2px solid #FF2E63;
  box-shadow: 0 8px 36px 0 rgba(255,46,99,0.18);
  transform: translateY(-1px);
  outline: none;
}
.cta-btn:active {
  background: #203A43;
  color: #fff;
  border-color: #203A43;
}

/* ----------- MOBILE MENU (SLIDE-IN) ----------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin-left: 20px;
  cursor: pointer;
  z-index: 401;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #203A43;
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 22px 18px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 2px 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #15FFAB;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00A7E1;
  color: #FFF200;
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 860px) {
  header .container {
    padding: 14px 10px 10px 10px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 8px 20px;
  }
}
@media (max-width: 820px) {
  nav.main-nav, .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
  }
}

/* MAIN HERO & SECTION STYLES */
main section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: transparent;
  border: none;
}
main section:first-of-type {
  background: linear-gradient(93deg, #00A7E1 2%, #15FFAB 61%, #FFF200 100%);
  box-shadow: 0 4px 30px 0 rgba(32,58,67,0.07);
  color: #203A43;
  border-radius: 0 0 42px 42px;
  margin-bottom: 52px;
}
main section:first-of-type h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(32,58,67,0.09);
}
main section:first-of-type .subheadline {
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.10);
}
main section:first-of-type .cta-btn.primary {
  background: #FFF200;
  color: #203A43;
  border: 2px solid #FFF200;
  box-shadow: 0 4px 30px 0 rgba(255,242,0,0.14);
}
main section:first-of-type .cta-btn.primary:hover {
  background: #15FFAB;
  border-color: #15FFAB;
  color: #203A43;
}

.content-wrapper {
  background: rgba(255, 255, 255, 0.274);
  border-radius: 18px;
  padding: 40px 26px;
  box-shadow: 0 6px 32px 0 rgba(32,58,67,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.brand-values-visuals {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}
.brand-values-visuals img {
  height: 48px;
  min-width: 38px;
  max-width: 58px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 14px;
}
.feature {
  flex: 1 1 230px;
  min-width: 235px;
  max-width: 320px;
  background: #F2F2F2;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,167,225,0.07);
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .16s, transform .15s;
  margin-bottom: 20px;
}
.feature img {
  height: 40px; width: 40px; margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #00A7E1cc);
}
.feature h3 {
  color: #00A7E1;
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 34px 0 rgba(255,46,99, .18);
  background: #fff;
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 22px;
  margin-bottom: 16px;
}
.service, .service-detail {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,167,225,0.12);
  padding: 22px 22px 16px 22px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .14s, transform .14s;
}
.service:hover, .service-detail:hover {
  box-shadow: 0 8px 36px 0 rgba(0,167,225,0.21);
  transform: translateY(-3px);
}
.price {
  color: #FF2E63;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 1.09rem;
  margin-top: 8px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
  margin-bottom: 18px;
}
.benefit-list li {
  background: #00A7E1;
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  padding: 8px 18px;
  margin: 0 9px 8px 0;
  font-size: 1.01rem;
  box-shadow: 0 1px 7px 0 rgba(0,167,225, 0.11);
}

.benefit-highlights ul li {
  background: transparent;
  color: #203A43;
  padding: 0;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 7px;
}

.how-it-works,
.booking-process,
.how-to-buy,
.faq-preview,
.next-steps,
.highlighted-article,
.newsletter-signup {
  background: #F2F2F2;
  border-radius: 14px;
  padding: 20px 20px 20px 22px;
  margin-top: 20px;
  box-shadow: 0 1px 8px 0 rgba(180,240,255,0.08);
}

.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-top: 18px;
  margin-bottom: 18px;
}
.blog-post-list li a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,167,225,0.09);
  padding: 18px 18px 18px 20px;
  transition: box-shadow 0.16s, transform 0.15s;
  color: inherit;
}
.blog-post-list li a:hover, .blog-post-list li a:focus {
  box-shadow: 0 8px 32px 0 rgba(255,46,99, 0.18);
  background: #F2F2F2;
  outline: none;
  transform: translateY(-2px) scale(1.02);
}

.badge {
  background: #FF2E63;
  color: #fff;
  border-radius: 100px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 18px 6px 18px;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-flex;
}

/* ------------ TESTIMONIALS ------------ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  flex: 1 1 220px;
  max-width: 350px;
  background: #fff;
  color: #203A43;
  border-left: 7px solid #00A7E1;
  border-radius: 19px 19px 19px 7px;
  min-width: 210px;
  font-style: italic;
  box-shadow: 0 4px 23px 0 rgba(32,58,67,0.10);
  transition: box-shadow 0.15s, transform 0.14s;
  font-size: 1.09rem;
}
.testimonial-card:hover {
  border-left-color: #FF2E63;
  box-shadow: 0 8px 35px 0 rgba(0,167,225,0.15);
  transform: scale(1.025);
}
.testimonial-card .customer {
  font-style: normal;
  font-weight: 700;
  font-size: 1.02rem;
  color: #00A7E1;
  margin-top: 9px;
  display: block;
}

/* ------------ FOOTER ------------ */
footer {
  background: linear-gradient(90deg, #203A43 0%, #00A7E1 72%);
  color: #fff;
  padding: 34px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color .16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFF200;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 17px;
  margin-bottom: 8px;
}
.social-links a img {
  height: 29px;
  width: 29px;
  border-radius: 7px;
  transition: transform 0.16s, box-shadow 0.2s;
  box-shadow: 0 1px 8px 0 rgba(0,72,111,0.08);
}
.social-links a:hover img, .social-links a:focus img {
  transform: scale(1.11) rotate(-7deg);
  box-shadow: 0 5px 17px 0 rgba(255,46,99,0.13);
}
.contact-details {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #F2F2F2;
}
.contact-details a {
  color: #15FFAB;
  text-decoration: underline;
  transition: color .15s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #FFF200;
}
.copyright {
  font-size: 0.88rem;
  color: #b0daee;
  margin-top: 7px;
}

/* ------------ MISC: FORMS & ELEMENTS ------------ */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 9px;
  border: 2px solid #00A7E1;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  background: #fff;
  color: #203A43;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FF2E63;
}

/* ------------ COOKIE CONSENT BANNER & MODAL ------------ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #203A43;
  color: #fff;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-shadow: 0 -2px 16px 0 rgba(32,58,67,0.14);
  padding: 0;
  animation: slideBannerUp 0.55s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slideBannerUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-consent-content {
  background: #203A43;
  padding: 22px 24px;
  border-radius: 18px 18px 0 0;
  margin: 0 10px 0 10px;
  box-shadow: 0 3px 32px 0 rgba(0,167,225,0.22);
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-consent-banner p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #fff;
}
.cookie-action-group {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
}
.cookie-btn {
  padding: 8px 23px;
  font-weight: 700;
  border-radius: 99px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  background: #00A7E1;
  color: #fff;
  transition: background .16s, color .16s, box-shadow .17s;
  box-shadow: 0 2px 8px 0 rgba(0,167,225,0.14);
}
.cookie-btn.settings {
  background: #FF2E63;
}
.cookie-btn.reject {
  background: #fff;
  color: #203A43;
  border: 1.5px solid #00A7E1;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFF200;
  color: #203A43;
  outline: none;
  box-shadow: 0 4px 13px 0 rgba(255,242,0,0.17);
}
.cookie-btn.reject:hover {
  background: #FF4B2B;
  color: #fff;
  border-color: #FF4B2B;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,58,67,0.86);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.72,0,.45,1.43);
}
.cookie-modal.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #203A43;
  padding: 36px 30px 28px 30px;
  border-radius: 20px;
  max-width: 470px;
  min-width: 240px;
  box-shadow: 0 6px 44px 0 rgba(0,167,225,0.26);
  display: flex;
  flex-direction: column;
  gap: 23px;
  z-index: 5040;
}
.cookie-modal-content h2 {
  color: #00A7E1;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-cat-list {
  margin-bottom: 13px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.cookie-cat-row label {
  flex: 1 1 auto;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #F2F2F2;
  border-radius: 13px;
  border: 1.5px solid #00A7E1;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .14s, border .14s;
}
.cookie-toggle:checked {
  background: #15FFAB;
  border-color: #15FFAB;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(0,167,225,0.09);
  transition: left 0.18s cubic-bezier(.65,0,.37,1.01);
  position: absolute;
  top: 1px;
  left: 0.5px;
}
.cookie-toggle:checked::before {
  left: 16px;
  background: #15FFAB;
}
.cookie-modal .cookie-action-group {
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: transparent;
  color: #00A7E1;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover {
  color: #FF2E63;
}

/* ------------ RESPONSIVE ------------------ */
@media (max-width: 990px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper, .text-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 820px) {
  .content-wrapper {
    padding: 30px 6px;
    border-radius: 14px;
  }
  section {
    padding: 24px 0 0 0;
    margin-bottom: 40px;
  }
  .footer-menu {
    gap: 10px;
    font-size: 0.96rem;
  }
  .testimonial-slider, .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .testimonial-card, .service, .service-detail {
    min-width: 170px;
    max-width: 99vw;
    padding: 22px 12px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 14px 4px;
    border-radius: 9px;
  }
  .brand-values-visuals img {
    height: 33px;
    min-width: 27px;
    max-width: 41px;
  }
  .feature,
  .feature-grid,
  .testimonial-slider,
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section{
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
}
@media (max-width: 650px) {
  header .container {
    padding: 7px 3px 0px 5px;
  }
  main section {
    padding: 12px 0 0 0;
    margin-bottom: 22px;
  }
  .next-steps, .newsletter-signup, .highlighted-article {
    padding: 16px 6px 13px 13px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  footer .container {
    padding-left: 7px; padding-right: 7px;
    gap: 12px;
  }
  .blog-post-list li a {
    padding: 11px 6px 12px 11px;
    font-size: 0.98rem;
  }
}

/* ------------ MICRO-INTERACTIONS ------------ */
.cta-btn, .cookie-btn {
  transition: background 180ms, box-shadow 160ms, color 180ms, border 200ms, transform 140ms;
  will-change: transform, box-shadow;
}
.feature:hover img, .feature:focus img,
.service:hover h3, .service-detail:hover h3 {
  filter: drop-shadow(0 2px 8px #FF2E63bb);
}
.feature:hover h3, .feature:focus h3,
.service:hover h3, .service-detail:hover h3 {
  color: #FF2E63;
  transition: color 0.2s;
}
.testimonial-card:active {
  transform: scale(1.04);
}

/* accentuating input selection */
::selection {
  background: #00A7E1;
  color: #fff;
}

/* Utils */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-14 { margin-top: 14px; }
.mb-14 { margin-bottom: 14px; }
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hide scroll on mobile menu overlay */
body.mobile-menu-open {
  overflow: hidden;
}

/* --------- ACCESSIBILITY --------- */
:focus {
  outline: 2.5px solid #15FFAB !important;
  outline-offset: 2px;
}

/* Hide visually but remain for screen-readers */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Extra: Professional look for strong, em, and blockquote */
strong {
  color: #FF2E63;
  font-weight: 700;
}
em, cite {
  color: #00A7E1;
  font-style: italic;
}
blockquote {
  border-left: 5px solid #00A7E1;
  padding-left: 14px;
  color: #203A43;
  font-style: italic;
  margin: 17px 0 17px 0;
}

/* END - TechNova Erlebnisse vibrant energetic flexbox CSS */
