/* ==========================================================================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #FFFDF6;
  color: #151C15;
  font-family: 'Nunito', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #1ac974;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 3px solid #1ac974;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
  list-style-position: inside;
}
strong, b {
  font-weight: 700;
}

::-webkit-input-placeholder { color: #71816D; }
::-moz-placeholder { color: #71816D; }
:-ms-input-placeholder { color: #71816D; }
::placeholder { color: #71816D; }

/* ==========================================================================
   COLOR PALETTE & BRANDING
   ========================================================================== */
:root {
  --primary: #264D3D;
  --secondary: #8CB29B;
  --accent: #FFFDF6;
  --vibrant-green: #1ac974;
  --electric-orange: #FFA424;
  --pink: #FF4487;
  --yellow: #FFD900;
  --error: #FC2F28;
  --surface: #F3F6EC;
  --shadow: rgba(38,77,61,0.07);
  --radius: 18px;
  --text-dark: #151C15;
  --text-light: #fff;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;700;500&family=Nunito:wght@400;600;700&display=swap');

body {
  font-family: 'Nunito', Arial, sans-serif;
  background: var(--accent);
  color: var(--text-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--vibrant-green);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--electric-orange);
}
h4 {
  font-size: 1.1rem;
}
p, li, td, th {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}
p {
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
blockquote:before {
  content: '“';
  color: var(--electric-orange);
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}
footer {
  font-size: 0.95rem;
  color: var(--primary);
  margin-top: 8px;
}

/* ==========================================================================
   LAYOUT - FLEXBOX (no grid, no columns)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 4px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .container {
    max-width: 890px;
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2vw;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
  min-width: 260px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(38, 77, 61, 0.16);
  transform: translateY(-4px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* Feature Items (used for icon + text rows) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
  flex-direction: column;
  position: relative;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.testimonial-card footer {
  color: var(--vibrant-green);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px var(--shadow);
}
thead {
  background: var(--primary);
}
th, td {
  text-align: left;
  padding: 14px 14px;
}
th {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
}
tbody tr {
  border-bottom: 1px solid #e8efeb;
}
tbody tr:last-child {
  border-bottom: none;
}
td {
  color: var(--text-dark);
  font-size: 1rem;
}

@media (max-width: 650px) {
  table, thead, tbody, tr, td, th {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 12px 6px;
  }
  thead {
    display: none;
  }
  tr {
    border-bottom: 2px solid #e8efeb;
    margin-bottom: 18px;
  }
}

/* ==========================================================================
   NAVIGATION (HEADER)
   ========================================================================== */
header {
  background: #fff;
  border-bottom: 2px solid var(--surface);
  position: sticky;
  top: 0;
  z-index: 990;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(18px, 2vw);
  min-height: 70px;
}
header img {
  height: 46px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant-green);
  color: #fff;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 900px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 46px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.btn-primary {
  background: var(--vibrant-green);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(26, 201, 116, 0.13);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric-orange);
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
}
.btn-secondary {
  background: var(--electric-orange);
  color: var(--text-dark);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vibrant-green);
  color: #fff;
}

/* --- Responsive header nav --- */
@media (max-width: 860px) {
  header .container {
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION MENU
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  padding: 10px 18px 10px 10px;
  background: var(--electric-orange);
  color: #fff;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 993;
  transition: background 0.14s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vibrant-green);
  color: #fff;
}

@media (max-width: 860px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(38, 77, 61, 0.96);
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--electric-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  margin-top: 80px;
  padding: 20px 38px;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  padding: 10px 0;
  width: 100%;
  border-radius: 0.5em;
  transition: background 0.19s, color 0.17s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--vibrant-green);
  color: #fff;
  padding-left: 15px;
}

/* Disable background scroll when mobile menu is open (to be toggled via JS) */
body.mobile-nav-open {
  overflow: hidden;
}

/* ==========================================================================
   GENERAL CONTENT SPACING AND HIERARCHY
   ========================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 3px 16px var(--shadow);
}
main section:last-child {
  margin-bottom: 0;
}
.content-wrapper > div:not(:last-child),
.content-wrapper > ul:not(:last-child),
.content-wrapper > p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  section {
    padding: 24px 4vw;
    margin-bottom: 36px;
  }
  .content-wrapper > * {
    margin-bottom: 14px;
  }
}

/* Spacing for feature lists & icon rows */
.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 18px;
  padding-left: 0;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08em;
  line-height: 1.6;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 6px var(--shadow);
}
.content-wrapper ul li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Special highlight for strong or key points in lists */
.content-wrapper li strong {
  color: var(--pink);
  font-weight: 800;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 20px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--electric-orange);
}
footer address {
  color: #f4fefb;
  font-style: normal;
  font-size: 0.98em;
  line-height: 1.7;
}
footer address a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   BUTTONS AND INTERACTIONS
   ========================================================================== */
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}
.btn-primary:focus, .btn-secondary:focus {
  outline: 3px solid var(--electric-orange);
  outline-offset: 2px;
}

/* Cards: Custom links */
.card a {
  color: var(--vibrant-green);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.16s;
}
.card a:hover, .card a:focus {
  color: var(--primary);
}

/* ==========================================================================
   MICRO-INTERACTIONS AND ANIMATIONS
   ========================================================================== */
.card, .testimonial-card, section, .btn-primary, .btn-secondary {
  transition: box-shadow 0.18s, background 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(255,200,36,0.11), 0 2px 24px var(--shadow);
  transform: translateY(-2.5px) scale(1.018);
}
.btn-primary:hover {
  box-shadow: 0 6px 18px var(--electric-orange), 0 2px 18px var(--shadow);
}
.btn-secondary:hover {
  box-shadow: 0 6px 18px var(--vibrant-green), 0 2px 18px var(--shadow);
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9970;
  background: #fff;
  box-shadow: 0 -2px 18px var(--shadow), 0 1px 5px #8cb29b33;
  border-top: 4px solid var(--electric-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4vw 18px 4vw;
  min-height: 62px;
  font-size: 1.08rem;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--primary);
  animation: fadeInUp 0.47s cubic-bezier(.55,.04,.44,1.63);
}
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 8px 22px;
  border-radius: 900px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0;
  background: var(--electric-orange);
  color: #fff;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 1px 9px var(--shadow);
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--vibrant-green);
}
.cookie-banner .btn-cookie-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: var(--pink);
  color: #fff;
}
.cookie-banner .btn-cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .btn-cookie-reject:hover, .cookie-banner .btn-cookie-reject:focus {
  background: var(--error);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px 14px 15px;
    font-size: 1rem;
    gap: 11px;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10010;
  background: rgba(38, 77, 61, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.4s cubic-bezier(.55,.04,.44,1.63);
}
@keyframes cookieModalIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 44px 24px 28px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 42px var(--shadow), 0 2px 28px #1ac97419;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: fadeInUp 0.3s cubic-bezier(.55,.04,.44,1.63);
}
.cookie-modal-content h3 {
  color: var(--primary);
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin: 12px 0 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.45rem;
  padding: 8px 13px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: var(--error);
}
.cookie-switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #eaeaea;
  position: relative;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  transition: 0.19s;
}
.cookie-switch input:checked + .slider {
  left: 22px;
  background: var(--vibrant-green);
}
/* Essential cookies always enabled (disabled switch) */
.cookie-category .cookie-switch.disabled {
  background: #c2c2c2;
  cursor: not-allowed;
}
.cookie-category .cookie-switch.disabled .slider {
  background: #264d3dbd;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 22px 8vw 20px 8vw;
    min-width: 0;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.text-center { text-align: center; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide visually but remain accessible to screen readers */
.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  overflow: hidden!important;
  clip: rect(0, 0, 0, 0)!important;
  white-space: nowrap!important;
  border: 0!important;
}

/* ==========================================================================
   VIBRANT/ENERGETIC VISUAL EFFECTS
   ========================================================================== */
section, .card, .testimonial-card {
  box-shadow: 0 3px 20px rgba(255,200,36,0.08), 0 2px 24px var(--shadow), 0 0.5px 4px #1ac97419;
  position: relative;
  border: 3px solid rgba(26, 201, 116, 0.06);
}
section:after {
  content: '';
  position: absolute;
  top: -19px;
  right: -19px;
  width: 50px; height: 50px;
  background: var(--electric-orange);
  border-radius: 80% 30% 60% 80%;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.card:before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  background: var(--pink);
  opacity: 0.07;
  z-index: 0;
  border-radius: 43% 57% 63% 37% / 42% 64% 36% 58%;
}

/* Color pop for headings */
h1, h2 {
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--primary);
}
h2 {
  background: linear-gradient(90deg, var(--electric-orange) 1%, var(--vibrant-green) 68%, var(--pink) 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: var(--electric-orange);
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

/* Buttons: extra energetic underline bar */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}
.btn-primary:after, .btn-secondary:after {
  content: '';
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0.29;
  transition: opacity 0.12s, transform 0.14s;
  pointer-events: none;
}
.btn-primary:hover:after, .btn-secondary:hover:after {
  opacity: 0.85;
  transform: scaleX(1.16);
}

/* ==========================================================================
   RESPONSIVE - MOBILE FIRST SHIFTS
   ========================================================================== */
@media (max-width: 900px) {
  header .container, .footer-nav { gap: 8px; }
  .testimonial-card { padding: 13px; gap: 10px; }
  .section { margin-bottom: 40px; }
}
@media (max-width: 650px) {
  html { font-size: 15px; }
  footer { padding: 26px 0 10px 0; }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
  }
}

/*—- Hide mobile menu on large viewports —-*/
@media (min-width: 861px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* ==========================================================================
   HIGH CONTRAST FOR TESTIMONIALS
   ==========================================================================
   Use only dark text on light backgrounds for testimonials as required
*/
.testimonial-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px var(--shadow);
  border: 2px solid var(--secondary);
}
.testimonial-card blockquote { color: var(--primary); }
.testimonial-card footer { color: var(--electric-orange); }

/* ==========================================================================
   PRINT/PDF SUPPORT
   ========================================================================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none!important; }
  header, footer { color-adjust: exact; -webkit-print-color-adjust: exact; }
}
