/* --- CSS RESET AND 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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F5F8;
  color: #203A59;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
hr { border: none; border-top: 1px solid #E0E6EF; margin: 32px 0; }

/* --- ROOT BRAND COLORS AND FONTS --- */
:root {
  --primary: #203A59;
  --secondary: #53B0E4;
  --accent: #F2F5F8;
  --vibrant-blue: #2273EF;
  --electric-magenta: #EC36A4;
  --lime: #D7FA37;
  --yellow: #FFE158;
  --electric-cyan: #1DE1D5;
  --danger: #EC3636;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(32,58,89,0.05);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 76px;
}
header a img {
  height: 42px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex: 1;
}
nav a {
  display: block;
  padding: 8px 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: var(--secondary);
  color: #fff;
}
.cta-button {
  background: linear-gradient(90deg, var(--vibrant-blue) 60%, var(--electric-magenta) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 13px 36px;
  font-size: 18px;
  border-radius: 28px;
  border: none;
  margin-left: 20px;
  box-shadow: 0 6px 24px 0 rgba(32,58,89,0.09);
  transition: background 0.22s, transform 0.16s, box-shadow 0.19s;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
  z-index: 2;
}
.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(90deg, var(--electric-magenta) 60%, var(--vibrant-blue) 100%);
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(32,58,89,0.14);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 34px;
  color: var(--vibrant-blue);
  border: none;
  margin-left: 25px;
  z-index: 200;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  transition: background .19s, box-shadow .15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--eLime, #D7FA37);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100vh;
  background: #fff;
  box-shadow: 12px 0 44px 0 rgba(32,58,89,0.17);
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,0.56,1.48);
  z-index: 9999;
  padding: 25px 22px 25px 18px;
  gap: 24px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--electric-magenta);
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: var(--vibrant-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  padding: 10px 0 10px 10px;
  color: var(--primary);
  border-radius: 7px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover {
  background: var(--electric-cyan);
  color: var(--primary);
}

@media (max-width: 1040px) {
  header .container {
    gap: 12px;
  }
  nav {
    gap: 12px;
  }
  .cta-button {
    margin-left: 7px;
    font-size: 16px;
    padding: 10px 24px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MAIN --- */
main {
  width: 100%;
  min-height: 60vh;
  background: transparent;
}

/* --- SECTION SPACING --- */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0px; /* Don't double pad with .container */
  background: none;
}

/* --- FLEX SPACING PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 17px 0 rgba(53,176,228,0.09);
  padding: 24px;
  flex: 1 1 310px;
  min-width: 250px;
  transition: box-shadow .19s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(236,54,164,0.12), 0 2px 12px var(--secondary, #53B0E4);
  transform: translateY(-3px) scale(1.02);
}
.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: 12px;
  box-shadow: 0 3px 18px 0 rgba(32,58,89,0.12);
  margin-bottom: 20px;
  transition: box-shadow .17s, border .12s;
  border-left: 7px solid var(--electric-magenta);
  max-width: 900px;
}
.testimonial-card p {
  color: #25243A;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial-card span {
  color: #444;
  font-size: 15px;
  font-family: var(--font-display);
  margin-left: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero-section {
  width: 100%;
  padding: 58px 0 64px 0;
  background: linear-gradient(95deg, var(--primary) 55%, var(--electric-magenta) 130%);
  color: #fff;
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 700px;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  margin-bottom: 0px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.hero-section .subtitle {
  font-family: var(--font-body);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #F2F5F8;
}
.hero-section .cta-button {
  margin-top: 12px;
  box-shadow: 0 6px 36px 0 rgba(29,225,213,0.16);
  font-size: 20px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px 24px 22px;
  box-shadow: 0 2px 15px 0 rgba(82,188,246,0.10);
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 275px;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .17s, border .13s, transform .14s;
  margin-bottom: 20px;
  border-left: 5px solid var(--electric-cyan);
}
.feature-grid li:hover {
  box-shadow: 0 7px 34px 0 rgba(82,188,246,0.17), 0 2px 10px var(--electric-magenta);
  transform: translateY(-2px) scale(1.025);
  border-left: 5px solid var(--electric-magenta);
}
.feature-grid img {
  height: 42px;
  width: 42px;
}
.feature-grid h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 2px 0;
}
.feature-grid p {
  font-size: 15px;
  color: #444;
  margin-top: 0;
  font-family: var(--font-body);
}

/* --- SECTION HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.17;
}
h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 21px; font-weight: 700; }

.subtitle {
  font-size: 20px;
  line-height: 1.35;
  font-family: var(--font-body);
  color: var(--secondary);
  font-weight: 600;
}

.text-section {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 18px;
}
.text-section ul,
.text-section ol {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 20px;
  list-style: disc;
}
.text-section ul li, .text-section ol li {
  font-size: 16px;
  margin-bottom: 7px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/***** CARDS & SERVICES *****/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-cards .text-section {
  background: linear-gradient(97deg, var(--secondary) 30%, var(--lime) 110%);
  border-radius: 17px;
  box-shadow: 0 3px 24px 0 rgba(32,58,89,0.07);
  padding: 24px 22px 22px 21px;
  color: #1B2447;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  transition: box-shadow .18s, transform .16s;
  margin-bottom: 20px;
}
.service-cards .text-section:hover {
  box-shadow: 0 10px 34px 0 rgba(29,225,213,0.09), 0 1px 12px var(--electric-magenta);
  transform: scale(1.025) translateY(-3px);
}
.service-cards h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  margin-top: 0;
}
.service-cards ul {
  margin-top: 8px;
  margin-bottom: 10px;
  padding-left: 19px;
}
.service-cards ul li {
  font-size: 15px;
  color: #253a59;
}
.service-cards p {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
/***** END CARDS & SERVICES *****/

/****** PARTNER LOGOS ******/
.partner-logos {
  margin-top: 16px;
  margin-bottom: 12px;
}
.partner-logos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}
.partner-logos li {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-display);
  padding: 7px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(83,176,228, .10);
  font-weight: 700;
  font-size: 16px;
}

/****** QUOTE SNIPPETS FOR ENTDECKUNGEN ******/
.quote-snippets p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--electric-magenta);
  margin-bottom: 6px;
  margin-top: 0px;
  font-weight: bold;
}
/****** IMPACT SUMMARIES ******/
.impact-summaries {
  font-size: 15px;
  color: var(--primary);
  background: var(--electric-cyan, #1DE1D5);
  border-radius: 11px;
  padding: 15px 18px;
  margin: 14px 0;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(29,225,213,0.06);
}

/***** CTA BUTTONS */
.cta-button,
button.cta-button {
  background: linear-gradient(90deg, var(--vibrant-blue) 85%, var(--electric-magenta) 150%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 13px 36px;
  font-size: 18px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 6px 24px 0 rgba(53,176,228,0.12);
  margin-top: 6px;
  transition: background 0.22s, transform 0.16s, box-shadow 0.19s;
}
.cta-button:hover,
button.cta-button:hover {
  background: linear-gradient(90deg, var(--electric-magenta) 85%, var(--vibrant-blue) 150%);
  transform: translateY(-2px) scale(1.0225);
  box-shadow: 0 10px 42px 0 rgba(236,54,164,0.15);
}

/***** FOOTER *****/
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 30px 0;
  font-size: 16px;
}
footer .container {
  flex-direction: column;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  padding: 5px 9px;
  border-radius: 4px;
  transition: background 0.16s, color 0.15s;
}
footer nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.footer-contact a {
  color: var(--lime);
  text-decoration: underline;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  color: var(--primary);
  width: 100vw;
  box-shadow: 0 -7px 30px 0 rgba(32,58,89,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px 18px;
  gap: 28px;
  flex-wrap: wrap;
  animation: cookieSlideIn 0.7s cubic-bezier(.7,0,.31,1.03);
}
@keyframes cookieSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 15px;
  color: #203A59;
  font-family: var(--font-body);
  margin-right: 18px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 23px;
  font-size: 15px;
  font-family: var(--font-display);
  border-radius: 18px;
  font-weight: bold;
  border: none;
  margin-right: 6px;
  margin-top: 0;
  min-width: 100px;
  box-shadow: 0 2px 8px 0 rgba(53,176,228,0.08);
  transition: background 0.16s, color 0.16s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--lime); color: var(--primary);
}
.cookie-banner .accept:hover { background: var(--yellow); }
.cookie-banner .reject {
  background: var(--danger); color: #fff;
}
.cookie-banner .reject:hover {
  background: #b61e29; color: #fff;}
.cookie-banner .settings {
  background: var(--secondary); color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--vibrant-blue);}

/* --- Cookie Preferences Modal --- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,38,54,0.45);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBg .33s;
}
@keyframes fadeInBg { from { opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 7px 48px 0 rgba(32,58,89,0.29);
  max-width: 400px;
  width: 96vw;
  padding: 30px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop .27s cubic-bezier(.29,1.46,.64,1);
  z-index: 100001;
}
@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 22px;
  color: var(--electric-magenta);
  font-family: var(--font-display);
  font-weight: bold;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F2F5F8;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.cookie-modal .category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--vibrant-blue);
  pointer-events: auto;
}
.cookie-modal .category input[type="checkbox"]:disabled {
  accent-color: var(--lime);
  cursor: not-allowed;
}
.cookie-modal .category label {
  font-size: 16px;
  color: var(--primary);
  font-family: var(--font-body);
  margin-left: 0;
  font-weight: bold;
}
.cookie-modal .category span {
  font-size: 14px;
  color: #54607e;
  font-family: var(--font-body);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 20px;
  border-radius: 16px;
  background: var(--vibrant-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  border: none;
  font-weight: 600;
  transition: background 0.16s, color .11s;
  box-shadow: 0 2px 10px 0 rgba(53,176,228,0.09);
  margin-right:0;
}
.cookie-modal .cookie-modal-actions .cookie-cancel { background: #F2F5F8; color: var(--primary); }
.cookie-modal .cookie-modal-actions .cookie-cancel:hover { background: #e8eaee; }
.cookie-modal .cookie-modal-actions .cookie-save { background: var(--lime); color: var(--primary); }
.cookie-modal .cookie-modal-actions .cookie-save:hover { background: var(--yellow); }

/***** END COOKIE CONSENT *****/

/********  RESPONSIVE DESIGN  ********/
/* mobile: max-width: 768px */
@media (max-width: 1200px) {
  .feature-grid li, .service-cards .text-section {
    max-width: 45vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .card-container, .content-grid {
    gap: 14px;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 4vw; padding-right: 4vw;
  }
  .hero-section {
    padding: 34px 0 40px 0;
  }
  .hero-section h1 {
    font-size: 32px;
  }
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  .feature-grid {
    gap: 13px;
  }
  .feature-grid li, .service-cards .text-section {
    max-width: 100vw;
    flex: 1 1 100%;
    min-width: auto;
    align-items: flex-start;
  }
  .content-grid, .card-container, .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 10px;
    gap: 18px;
  }
  .cookie-banner p { margin-right: 0; }
}
@media (max-width: 540px) {
  .footer-contact {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    text-align: center;
  }
  .footer-contact span, .footer-contact a { font-size: 14px; }
}

/***** FORM ELEMENTS *****/
input, select, textarea {
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 8px;
  border: 1.5px solid #cfe5f7;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 16px;
  outline: none;
  transition: border .16s, box-shadow .16s;
  box-shadow: 0 1px 6px 0 rgba(83,176,228,0.07);
}
input:focus, select:focus, textarea:focus {
  border: 1.8px solid var(--secondary);
  box-shadow: 0 2px 12px 0 rgba(83,176,228,0.16);
}

/***** MISC UTILS *****/
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 34px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 34px; }

/***** MICRO-INTERACTIONS & HIGHLIGHT EFFECTS *****/
section .cta-button {
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: 0 4px 18px 0 rgba(83,176,228,0.19);
  font-size: 19px;
}
.impact-summaries, .quote-snippets {
  animation: fadeUp .5s;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(36px);} to {opacity:1; transform:translateY(0);} }
.testimonial-card:hover {
  border-left: 7px solid var(--vibrant-blue);
  box-shadow: 0 9px 32px 0 rgba(29,225,213,0.08), 0 2px 12px var(--vibrant-blue);
}

/**** LINK/ANCHOR MICRO-INTERACTION ****/
a {
  position: relative;
}
a:hover:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--vibrant-blue) 65%, var(--electric-magenta) 100%);
  border-radius: 4px;
  transition: width 0.17s;
}

/**** CUSTOM SCROLLBAR (for vibrant feel) ****/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: var(--accent);
}

/***** ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS, REVIEWS *****/
.testimonial-card, .quote-snippets p {
  color: #19192E; /* For accessibility on white */
}
.testimonial-card strong, .quote-snippets strong {
  color: var(--vibrant-blue);
}

/****** VIBRANT DECORATIVE ACCENT BORDERS ******/
section {
  box-sizing: border-box;
}
section:not(:first-child):not(:last-child):not(.hero-section) {
  border-left: 9px solid var(--secondary);
  border-radius: 0 22px 22px 0px;
}
@media (max-width: 768px) {
  section:not(:first-child):not(:last-child):not(.hero-section) {
    border-left: 0;
    border-top: 9px solid var(--secondary);
    border-radius: 0 0 22px 22px;
  }
}

/******* Print-friendly (minimal) ******/
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop, .cta-button, footer, header {
    display: none !important;
  }
  section { box-shadow: none !important; border: none !important; }
}

/***** END *****
No grid, no columns, no clamp(), all flex layouts, spacing/gap patterns included,
electric/vibrant/energetic style using bold colors, sharp typography, professional shadows, smooth micro-interactions, and mobile nav/cookie modal as required.
*/
