/* --- 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, 
main, 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;
}
html { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* --- CSS VARIABLES --- */
:root {
  --primary: #123147;
  --secondary: #DEAA27;
  --accent: #F5F3EE;
  --fun-coral: #FF6F61;
  --fun-blue: #38B6FF;
  --fun-green: #6DEAAE;
  --fun-pink: #F157B0;
  --navy: #123147;
  --white: #fff;
  --shadow-s: 0 2px 8px 0 rgba(222, 170, 39, 0.10), 0 2px 6px 0 rgba(18, 49, 71, 0.04);
  --shadow-m: 0 4px 20px 0 rgba(222,170,39,.14), 0 8px 40px 0 rgba(18,49,71, .06);
  --radius-l: 32px;
  --radius-m: 18px;
  --radius-s: 10px;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;700;400&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, .cta-banner h2, .cta-primary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--fun-coral);
  font-weight: 800;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--fun-blue);
  font-weight: 700;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--fun-green);
  font-weight: 700;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
p, ul, li {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}
.lead {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}
strong { color: var(--fun-coral); }

/* --- GENERAL LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & NAV --- */
header {
  background: var(--accent);
  width: 100%;
  box-shadow: var(--shadow-s);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: var(--radius-s);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--fun-coral);
  color: var(--white);
}
.cta-primary {
  background: var(--secondary);
  color: var(--navy);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  padding: 11px 32px;
  font-size: 1.19rem;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  transition: background 0.18s, color 0.18s, transform 0.19s;
  margin-left: 18px;
  display: inline-block;
  position: relative;
  outline: none;
}
.cta-primary:active {
  transform: scale(0.98);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--fun-blue);
  color: var(--white);
  box-shadow: var(--shadow-m);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--fun-coral);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  margin-left: 24px;
  border: none;
  box-shadow: var(--shadow-m);
  z-index: 30;
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-toggle:hover {
  background: var(--fun-blue);
  transform: rotate(-7deg) scale(1.06);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  box-shadow: 0 0 60px 0 rgba(0,0,0,0.2);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.87,.26,.18,1.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--fun-coral);
  background: var(--white);
  border-radius: 50%;
  font-size: 2.2rem;
  width: 46px; height: 46px;
  position: absolute;
  top: 24px; right: 20px;
  box-shadow: var(--shadow-m);
  z-index: 1100;
  transition: background 0.18s, color 0.16s, transform 0.17s;
}
.mobile-menu-close:hover {
  background: var(--fun-blue);
  color: var(--white);
  transform: rotate(-14deg) scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  background: var(--fun-coral);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-m);
  margin-bottom: 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-blue);
  color: var(--white);
}

@media (max-width: 1050px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
  .cta-primary { display: inline-block !important; }
}

/* --- MAIN HERO & BANNERS --- */
main section {
  background: var(--accent);
  border-radius: var(--radius-l);
  margin-top: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-s);
}
.cta-banner {
  background: var(--fun-pink);
  padding: 32px 28px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 2rem;
}
.cta-banner p {
  color: var(--accent);
  font-size: 1.14rem;
  margin-bottom: 12px;
}

/* --- FLEXBOX PATTERNS & STRUCTURE --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 22px 20px;
  transition: transform 0.19s, box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-7px) scale(1.018);
  box-shadow: var(--shadow-m);
}
.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;
  border-radius: var(--radius-m);
  background: var(--white);
  box-shadow: var(--shadow-m);
  margin-bottom: 24px;
  position: relative;
  min-width: 250px;
  transition: box-shadow 0.17s, transform 0.16s;
  animation: testimonialPop .8s cubic-bezier(.77,-0.04,.29,1.11) both;
}
.testimonial-card:hover {
  box-shadow: 0 4px 40px 0 rgba(241,87,176,.12), 0 8px 24px 0 rgba(18,49,71,.07);
  transform: scale(1.03) rotate(-2.3deg);
}
@keyframes testimonialPop {
  0% { opacity:0; transform: translateY(25px) scale(0.98) rotate(-3deg); }
  100% { opacity:1; transform:translateY(0) scale(1) rotate(0deg); }
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--fun-blue);
  font-weight: 700;
}
.testimonial-card .rating-stars {
  font-size: 1.3em;
  color: var(--fun-coral);
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.team-grid, .course-catalog-grid, .blog-highlight {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.team-member, .course-card, .blog-highlight article {
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 23px 18px;
  flex: 1 1 250px;
  min-width: 240px;
  margin-bottom: 0;
  transition: box-shadow 0.19s, transform 0.18s;
  position: relative;
}
.team-member:hover, .course-card:hover, .blog-highlight article:hover {
  transform: translateY(-6px) scale(1.018);
  box-shadow: var(--shadow-m);
  z-index: 1;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin: 14px 0 2px 0;
  font-size: 0.98rem;
}
.category-list a {
  color: var(--fun-green);
  font-weight: 700;
  background: var(--accent);
  border-radius: 12px;
  padding: 4px 14px;
  margin-right: 7px;
  transition: background 0.13s, color 0.13s;
}
.category-list a:hover {
  background: var(--fun-coral);
  color: var(--white);
}

.text-section {
  margin-bottom: 14px;
  padding-bottom: 8px;
}

.text-section ul, .content-wrapper ul, .feature-list {
  list-style: disc inside;
  margin-left: 15px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul li, .feature-list li, .content-wrapper ul li {
  margin-bottom: 6px;
}

.embedded-map-placeholder {
  margin-top: 15px;
  width: 100%;
  min-height: 130px;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-style: italic;
  font-size: 1.1em;
}

/* --- CONTACT INFO --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 6px 0;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  color: var(--primary);
}

/* --- FOOTER --- */
footer {
  background: var(--navy);
  color: var(--accent);
  padding: 50px 0 15px 0;
  margin-top: 34px;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--fun-green);
  font-weight: 700;
  margin-bottom: 4px;
  border-radius: 7px;
  padding: 4px 12px;
  transition: background 0.13s, color 0.13s;
  font-size: 1rem;
}
footer nav a:hover {
  background: var(--fun-blue);
  color: var(--accent);
}
.footer-contact {
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 6px;
  max-width: 270px;
}
.footer-contact a { color: var(--fun-blue); text-decoration: underline; }
.footer-contact img {
  width: 21px; height: 21px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

/* --- BLOG SUBSCRIPTION FORM --- */
form {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 11px;
}
form input[type="email"] {
  border: 2px solid var(--fun-blue);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 1.05em;
  font-family: inherit;
  color: var(--primary);
  background: var(--white);
  outline: none;
  transition: border .16s;
}
form input[type="email"]:focus {
  border: 2px solid var(--fun-coral);
}
form button {
  background: var(--fun-green);
  color: var(--navy);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  font-size: 1.05em;
  border-radius: 14px;
  border: none;
  box-shadow: var(--shadow-s);
  cursor: pointer;
  transition: background .15s, color .15s, transform .11s;
  outline: none;
}
form button:disabled, form input:disabled {
  background: #e3e6e9;
  color: #b3b7bd;
  cursor: not-allowed;
}
form button:hover:enabled {
  background: var(--fun-coral);
  color: var(--white);
  transform: scale(1.05);
}
.note {
  font-size: 0.97em;
  color: var(--secondary);
  margin-top: 7px;
  font-style: italic;
}

/* --- BUTTONS --- */
button, .cta-primary, .cookie-banner .btn {
  transition: background 0.17s, color 0.17s, transform 0.16s, box-shadow 0.16s;
}

button:focus, .cta-primary:focus, .cookie-banner .btn:focus {
  outline: 2px solid var(--fun-blue);
  outline-offset: 2px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    padding: 0 7px;
    max-width: none;
    min-width: 0;
  }
  .section {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
  main section {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 23px 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .cta-banner {
    padding: 20px 10px;
    border-radius: var(--radius-m);
    font-size: 0.99em;
  }
  .team-grid, .course-catalog-grid, .blog-highlight {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section, .team-grid, .course-catalog-grid, .footer .container, .blog-highlight {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section {
    padding: 22px 3vw;
    margin-bottom: 28px;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: center;
    text-align: center;
  }
}

/* --- PLAYFUL DYNAMIC MICRO-INTERACTIONS --- */
.card::after, .course-card::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 23px;
  height: 23px;
  background: radial-gradient(circle, var(--fun-coral) 70%, rgba(255,255,255,0) 100%);
  opacity: 0.11;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: bounce-circle 3.7s infinite ease-in-out alternate-reverse;
}
@keyframes bounce-circle {
  0% { transform: scale(1) translateY(0); }
  59% { transform: scale(0.97) translateY(-7px); }
  100% { transform: scale(1.11) translateY(4px); }
}

.cta-banner {
  box-shadow: 0 6px 60px 0 rgba(222,170,39,.23), 0 3px 8px 0 rgba(18,49,71,.07);
  animation: swingIn 1s cubic-bezier(.57,-0.27,.92,.38) both;
}
@keyframes swingIn {
  0% { opacity:0; transform: rotate(-3deg) scale(1.08); }
  65% { opacity:0.4; }
  90% { transform: rotate(2deg) scale(1.01); }
  100% {opacity:1;transform: rotate(0deg) scale(1);}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 2500;
  background: var(--fun-blue);
  color: var(--navy);
  box-shadow: 0 -3px 20px 0 rgba(12,36,55,.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 26px 18px 22px 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 24px 24px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.77,-0.04,.29,1.11), opacity .3s;
  animation: cookieIn .6s cubic-bezier(.57,-0.14,1,.82) both;
}
@keyframes cookieIn {
  from { opacity:0; transform: translateY(100%); }
  to { opacity:1; transform: translateY(0);}
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform:translateY(120%);
}
.cookie-banner .btn {
  padding: 10px 18px;
  border-radius: var(--radius-s);
  font-size: 1.07em;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: var(--shadow-s);
  transition: background .16s, color .15s, transform .11s;
}
.cookie-banner .btn-accept {
  background: var(--fun-green);
  color: var(--navy);
}
.cookie-banner .btn-accept:hover {
  background: var(--fun-coral);
  color: var(--white);
  transform: scale(1.07);
}
.cookie-banner .btn-reject {
  background: #F7B1AB;
  color: var(--navy);
}
.cookie-banner .btn-reject:hover {
  background: var(--fun-pink);
  color: var(--white);
  transform: scale(1.06);
}
.cookie-banner .btn-settings {
  background: var(--secondary);
  color: var(--navy);
}
.cookie-banner .btn-settings:hover {
  background: var(--fun-blue);
  color: var(--white);
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.98em;
    padding: 16px 7px 14px 7px;
    border-radius: 18px 18px 0 0;
  }
  .cookie-banner .btn {
    margin-bottom: 8px;
    margin-left: 0;
  }
}

/* COOKIES MODAL OVERLAY*/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2800;
  background: rgba(18,49,71,.44);
  display: none;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInBg .32s linear both;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  width: 97vw; max-width: 400px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 33px 22px 29px 22px;
  margin-bottom: 18px;
  position: relative;
  animation: modalUp .3s cubic-bezier(.61,-0.13,.46,1.14) both;
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(130px); }
  to { opacity: 1; transform: translateY(0);}
}
.cookie-modal h3 {
  color: var(--fun-coral);
  font-size: 1.25em;
  margin-bottom: 13px;
  font-weight: 800;
}
.cookie-modal ul {
  margin-bottom: 13px;
  margin-left: 4px;
}
.cookie-modal ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 40px; height: 21px;
  cursor: pointer;
  border-radius: 50px;
  background: #eee;
  position: relative;
  margin-left: 8px;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--fun-green);
}
.cookie-toggle-knob {
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 16px; height: 16px;
  background: var(--fun-coral);
  border-radius: 50%;
  transition: left .17s, background .17s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-knob {
  left: 21px;
  background: var(--fun-blue);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 17px;
}
.cookie-modal .btn-close-modal {
  position: absolute;
  top: 9px;
  right: 8px;
  background: none;
  font-size: 2em;
  color: var(--fun-pink);
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1;
}
.cookie-modal .btn-close-modal:hover {
  color: var(--fun-blue);
}

/* --- A11Y (Focus) --- */
:focus-visible { outline: 2px solid var(--fun-blue); outline-offset: 1px; }

/* --- MISC ELEMENTS & UTILITIES --- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--fun-blue);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--fun-coral);
}

/* --- PLAYFUL/ENERGETIC TOUCHES --- */
.section {
  border-left: 8px solid var(--fun-coral);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}
main section {
  border: none;
}
main section:first-child {
  border-top: 8px solid var(--fun-pink);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
}
h1, h2, h3 {
  text-shadow: 0 3px 13px rgba(241,87,176,.16);
}

/* --- SPACING & VISUAL HIERARCHY --- */
.section + .section, .content-wrapper + .content-wrapper {
  margin-top: 24px;
}

/* --- PREVENT OVERLAP --- */
.card, .testimonial-card, .course-card, .team-member, .blog-highlight article {
  margin-bottom: 20px;
}

/* --- OVERRIDES FOR DARK TEXT ON LIGHT BG (testimonios/reviews) --- */
.testimonial-card, .testimonial-card p, .testimonial-card span, .testimonial-card .rating-stars {
  color: var(--primary);
  background: var(--white);
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.m-0 { margin: 0 !important; }
.mt-2 { margin-top: 2em; }

/* --- PRINT --- */
@media print {
  header, .mobile-menu, .mobile-menu-toggle, .cta-banner, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, main section {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
  }
}
