/* ===============================================================
   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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F8FAFD;
  font-family: 'Lato', Arial, sans-serif;
  color: #133553;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #133553;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus, button:focus {
  outline: 2px solid #FFB940;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===============================================================
   BRAND FONTS
   =============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Lato:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #133553;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
p, li, span, label, input, textarea {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
}

strong { color: #FFB940; font-weight: 700; }
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #133553;
  padding-left: 20px;
  border-left: 4px solid #FFB940;
  margin-left: 0;
  font-size: 1.1rem;
  font-style: italic;
}


/* ===============================================================
   COLORS, SHADOWS & ARTISTIC EFFECTS
   =============================================================== */
:root {
  --primary: #133553;
  --secondary: #E1EEF6;
  --accent: #FFB940;
  --text-on-accent: #133553;
  --shadow: 0 6px 24px rgba(19, 53, 83, 0.11), 0 2px 4px rgba(19,53,83,0.07);
  --radius-large: 32px;
  --radius-medium: 18px;
  --radius-small: 8px;
}

/* Artistic splash background for hero sections */
.section.hero {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.section.hero::before {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 220px;
  background: var(--accent);
  border-radius: 80% 60% 48% 72%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

/* ===============================================================
   CONTAINERS, SECTIONS & FLEX LAYOUTS
   =============================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 38px;
    border-radius: var(--radius-medium);
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 20px 20px 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(255, 185, 64, 0.22), var(--shadow);
}

.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;
  background: var(--secondary);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 560px;
  flex: 1 1 260px;
  position: relative;
  z-index: 1;
  transition: transform 0.16s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 16px 36px rgba(255,185,64,0.13), var(--shadow);
}
.testimonial-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-right: 4px;
  background: #fff;
  border: 2px solid var(--accent);
}
.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0;
  margin-left: 12px;
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF9F2;
  border-radius: var(--radius-small);
  padding: 18px 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(255, 185, 64, 0.05);
}

@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .card {
    max-width: 98vw;
    flex-direction: column;
  }
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* ===============================================================
   HEADER & NAVIGATION
   =============================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(19,53,83,.07);
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-small);
  color: var(--primary);
  transition: background .13s, color .15s;
  position: relative;
}
header nav a:hover, header nav a.active {
  background: var(--accent);
  color: var(--text-on-accent);
}

.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 11px 32px;
  border-radius: 50px;
  box-shadow: 0 2px 14px 0 rgba(255,185,64, 0.18);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 #fff8e0;
  border: none;
  transition: background .17s, box-shadow .17s, color .15s;
  margin-left: 20px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffd281;
  color: #133553;
  box-shadow: 0 4px 24px 0 rgba(255,185,64, 0.30);
  text-shadow: none;
}

.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  margin-left: 16px;
  box-shadow: none;
  transition: background .16s, color .15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #32649c;
  color: #ffe3ab;
}

@media (max-width: 992px) {
  header .container {
    gap: 11px;
  }
  header nav {
    gap: 13px;
  }
  .cta-primary {
    padding: 10px 20px;
    margin-left: 8px;
  }
}
@media (max-width:768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  header nav {
    display: none !important;
  }
  .cta-primary {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 140;
  display: none;
  background: var(--accent);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.0rem;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(19,53,83,0.13);
  border: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover {
  background: #ffd281;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(19,53,83,0.12);
  z-index: 2000;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 24px 28px;
  transition: transform 0.35s cubic-bezier(.7, .04, .18, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
}
.mobile-menu-close:hover {
  background: #d7eaf0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 0;
  color: var(--primary);
  border-radius: var(--radius-small);
  transition: color .14s, background .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--text-on-accent);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* Prevent scroll when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}


/* ===============================================================
   FOOTER
   =============================================================== */
footer {
  background: var(--primary);
  color: #fff;
  text-align: left;
  padding: 48px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.footer-main img {
  height: 58px;
}
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: #ffe6b1;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: .80;
  transition: color .15s, opacity .15s;
  padding: 4px 0;
}
.footer-nav a:hover {
  color: #FFB940;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 0.96rem;
}
.footer-contact img {
  width: 23px;
  height: 23px;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width:900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav {
    gap: 19px;
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 34px 0 18px 0;
    font-size: 1rem;
  }
  .footer-main img {
    height: 40px;
  }
}  

/* ===============================================================
   FORMS, INPUTS, BUTTONS
   =============================================================== */
input, textarea {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  background: #f7fafd;
  color: #133553;
  border: 1.5px solid #e3eef9;
  border-radius: 8px;
  padding: 11px 13px;
  margin-bottom: 18px;
  width: 100%;
  transition: border .14s, box-shadow .15s;
  box-shadow: 0 1px 5px rgba(19, 53, 83, 0.03);
}
input:focus, textarea:focus {
  border: 1.5px solid #FFB940;
  box-shadow: 0 2px 12px rgba(255,185,64,.08);
  background: #fffef7;
}
label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: bold;
  font-size: 1.05rem;
  letter-spacing: 0.015em;
  transition: background .16s, box-shadow .16s, color .14s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(255,185,64,0.13);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #ffd281;
  color: var(--primary);
  box-shadow: 0 3px 14px 0 rgba(255,185,64,0.22);
}

/* Artistic underline for links */
a:not(.cta-primary):not(.cta-secondary):not(.button):after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: var(--accent);
  transition: width .16s;
  border-radius: 2px;
}
a:hover:after {
  width: 100%;
}

/* ===============================================================
   COOKIE CONSENT BANNER & MODAL
   =============================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: var(--primary);
  font-size: 1rem;
  padding: 20px 16px 14px 16px;
  box-shadow: 0 -2px 24px 0 rgba(19,53,83,0.11);
  z-index: 2100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  animation: banner-in 0.42s cubic-bezier(.7,.15,.22,1);
}
@keyframes banner-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  padding: 9px 22px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2.5px 5px rgba(255,185,64,.09);
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--text-on-accent);
  transition: background .14s, color .12s;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffd281;
  color: var(--primary);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent);
  transition: background .14s, color .12s;   
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFE5B2;
}
.cookie-banner .settings {
  background: #E1EEF6;
  color: var(--primary);
  border: 1.5px solid #B6D5ED;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #C8DDF2;
}

@media (max-width:720px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    text-align: left;
    padding: 17px 6px 12px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
  }
}

/* COOKIES PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(19,53,83,0.25);
  align-items: center;
  justify-content: center;
  animation: overlay-in .3s;
}
@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: 28px;
  box-shadow: 0 4px 36px 0 rgba(19,53,83,0.15);
  padding: 38px 32px 22px 32px;
  max-width: 420px;
  width: 91vw;
  color: var(--primary);
  text-align: left;
  font-family: 'Lato', Arial, sans-serif;
  animation: modal-in .38s cubic-bezier(.8,.11,.3,1.05);
  position: relative;
}
@keyframes modal-in {
  from { transform: scale(0.93) translateY(80px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.cookie-modal label {
  font-weight: 600;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  font-size: 1.01rem;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 20px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 50%;
  transition: background .12s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #ffe3ab!important;
}

/* Custom styled switches for analytics/marketing cookies */
.cookie-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch span {
  position: absolute;
  cursor: pointer;
  background: #B6D5ED;
  border-radius: 24px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background .18s;
}
.cookie-switch span:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: .18s;
  box-shadow: 0 1.5px 5px rgba(19,53,83,0.07);
}
.cookie-switch input:checked + span {
  background: var(--accent);
}
.cookie-switch input:checked + span:before {
  transform: translateX(17px);
  background: var(--primary);
}

/* ===============================================================
   UTILITIES & DECORATIVE ELEMENTS
   =============================================================== */
.bg-accent {
  background: var(--accent) !important;
}
.bg-secondary {
  background: var(--secondary) !important;
}
.rounded {
  border-radius: var(--radius-medium);
}
.shadow {
  box-shadow: var(--shadow);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }

/* Decorative paint splatter artistic corners */
.card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  width: 39px;
  height: 39px;
  top: 10px;
  left: -20px;
  z-index: 0;
  border-radius: 70% 38% 70% 55%;
  background: var(--accent);
  opacity: .17;
}
.card::after, .testimonial-card::after {
  content: '';
  position: absolute;
  width: 33px;
  height: 33px;
  bottom: -10px;
  right: -13px;
  z-index: 0;
  border-radius: 56% 65% 42% 70%;
  background: var(--accent);
  opacity: .10;
}

/* Hide on small mobile for neatness */
@media (max-width:480px) {
  .card::after, .card::before, .testimonial-card::after, .testimonial-card::before {
    display: none;
  }
}

/* ===============================================================
   RESPONSIVENESS
   =============================================================== */
@media (max-width: 540px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1.02rem; }
  .section {
    padding: 22px 3px;
    margin-bottom: 18px;
    border-radius: var(--radius-small);
  }
  .cta-primary, .cta-secondary, button, .button {
    padding: 12px 10px;
    font-size: 0.98rem; 
  }
}
@media (max-width:390px) {
  .footer-contact, .footer-nav, .footer-main {
    font-size: .95rem; 
    gap: 7px;
  }   
}

/* ===============================================================
   THEME ARTISTIC: FONT & COLOR CUES
   =============================================================== */
h1, h2, h3, h4, .cta-primary, .cta-secondary, .button, .footer-main .tagline, .mobile-nav a, .testimonials blockquote {
  text-transform: none;
  letter-spacing: 0.02em;
}
.card, .testimonial-card, .feature-item {
  font-family: 'Lato', Arial, sans-serif;
}

/* Artistic details: subtle shadow hover, organic curves, vibrant highlight */
.card, .testimonial-card, .feature-item {
  box-shadow: 0 3px 18px rgba(19, 53, 83, .09);
  border-radius: 22px 52px 38px 28px / 38px 46px 32px 24px;
  border: 2px solid #E1EEF6;
  transition: box-shadow .19s, border-color .16s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  border-color: #FFB940;
  box-shadow: 0 8px 34px rgba(255,185,64,.09), 0 2px 10px rgba(19,53,83,0.08);
}

/* ===============================================================
   LISTS & BADGES (ARTISTIC STYLE)
   =============================================================== */
ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
}
ul li strong {
  color: var(--accent);
  font-weight: 700;
}
ul li:before {
  content: '';
  background-color: var(--accent);
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 7px;
  box-shadow: 0 2px 6px 0 rgba(255,185,64,0.13);
}

/* Artistic badge */
span[class^='badge'], .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius:22px;
  padding: 4px 13px;
  margin-right: 8px;
  font-size:0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 4px rgba(255,185,64,0.12);
  font-weight: 700;
}

/* ===============================================================
   TABLES
   =============================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}
th, td {
  border-bottom: 1px solid #E1EEF6;
  padding: 11px 14px;
  text-align: left;
}
th {
  background: #E1EEF6;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ===============================================================
   ARTISTIC EXTRAS (QUOTES/KATYEGORIES)
   =============================================================== */
div span[class^='badge'], div span[class*="badge"] {
  margin-top: 4px;
}
div > span:not([class^='badge']):not([class*='badge']) {
  background: #ffe6b1;
  color: #133553;
  border-radius: 14px;
  font-size: 0.95rem;
  padding: 3px 9px;
  margin: 0 3px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===============================================================
   ACCESSIBLE FOCUS
   =============================================================== */
:focus-visible {
  outline: 2.5px solid var(--accent) !important;
  outline-offset: 2px;
  z-index: 3;
}

/* ===============================================================
   PRINT FRIENDLY
   =============================================================== */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main { background: #fff; }
}
