/* ==================== 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #FAFAFA;
  color: #1F2833;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:root {
  --primary: #165785;
  --secondary: #D9E6EF;
  --accent: #F5C242;
  --dark: #183246;
  --light: #F6F8FB;
  --white: #fff;
  --shadow: 0 8px 32px 0 rgba(22, 87, 133, 0.10);
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 16px 0 10px 0;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, span, label, .text-section {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #223345;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
section ul {
  padding-left: 0;
  margin-left: 0;
}

/* ==================== LAYOUT CLASSES ==================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow 0.25s, transform 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 40px 0 rgba(21,87,133,0.14);
  transform: translateY(-3px) scale(1.018);
}
.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;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 20px 0 rgba(22,87,133,0.07);
  margin-bottom: 24px;
  min-width: 260px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(22,87,133,0.13);
  transform: scale(1.016);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  position: relative;
}
.logo img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-left: 24px;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.19s, color 0.16s, box-shadow 0.19s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: var(--accent);
  background: var(--secondary);
}
.cta.primary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 20px 0 rgba(22,87,133,0.08);
  padding: 12px 28px;
  font-size: 1.1rem;
  margin-left: 28px;
  transition: background 0.22s, box-shadow 0.25s, transform 0.19s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: #165785;
  box-shadow: 0 8px 32px 0 rgba(245,194,66,0.19);
  transform: translateY(-2px) scale(1.036);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 2.1rem;
  padding: 5px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-left: 20px;
  transition: background .21s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
  outline: 2px solid var(--accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 120;
  transform: translateX(-105%);
  transition: transform 0.43s cubic-bezier(.65,.04,.35,1.23);
  box-shadow: 0 10px 32px 0 rgba(22,87,133,0.14);
  padding: 0 0 0 0;
  opacity: 0.985;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  padding: 16px 18px 10px 24px;
  align-self: flex-end;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 24px 32px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 0 10px 2px;
  border-radius: var(--radius-md);
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 18px;
    margin-left: 10px;
  }
  .cta.primary {
    margin-left: 12px;
    padding: 10px 22px;
    font-size: 1rem;
  }
  header .container {
    padding-right: 45px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none !important;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  header .container {
    padding: 0 6px;
  }
  .logo img { height: 40px; }
  .mobile-nav {
    padding: 20px 11vw 10px 10vw;
  }
}

/* ==================== HERO & CREATIVE BANNERS ==================== */
.hero {
  min-height: 340px;
  background: linear-gradient(100deg, var(--secondary) 60%, var(--accent) 120%);
  display: flex;
  align-items: center;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: 0 14px 56px 0 rgba(245,194,66,0.07);
  margin-bottom: 60px;
}
.hero .container {
  min-height: 340px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
  background: rgba(255,255,255,0.84);
  padding: 30px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .hero, .hero .container {
    min-height: 180px;
  }
  .hero .content-wrapper {
    padding: 20px 7vw;
    max-width: 98vw;
  }
}

/* ==================== FEATURES, SERVICES, PREVIEWS ==================== */
.features ul, .services ul, .about-preview ul, .services-preview ul, .membership-options ul, .benefits ul, .values ul, .faq ul, .stories ul, .events ul, .contact ul, .policy ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.features li, .services li, .about-preview li, .services-preview li, .membership-options li, .benefits li, .values li, .faq li, .stories li, .events li, .contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 18px 11px 13px;
  box-shadow: 0 1px 6px 0 rgba(21,87,133,0.07);
  margin-bottom: 0;
  line-height: 1.64;
  min-height: 56px;
}
.features li img, .services li img, .about-preview li img, .services-preview li img, .membership-options li img, .benefits li img, .values li img, .faq li img, .stories li img, .events li img, .contact li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 2px #D9E6EF99);
}

/* Artistic color dabs to feature list elements */
.features li strong,
.services li strong,
.values li strong {
  color: var(--accent);
}
.features li:hover, .services li:hover {
  background: var(--secondary);
  transition: background 0.18s;
}

.text-section ul {
  margin-bottom: 13px;
}
.text-section {
  margin-bottom: 10px;
}

.about-preview, .services-preview {
  background: #fffbe4;
  border-left: 7px solid var(--accent);
  margin-bottom: 60px;
  box-shadow: 0 3px 16px 0 rgba(245,194,66,0.055);
}
.about-preview h2, .services-preview h2 {
  color: var(--primary);
  font-weight: 800;
}
.about-preview p, .services-preview p {
  color: #223345;
}

/* ==================== CTA-BANNER ==================== */
.cta-banner {
  margin-bottom: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 24px 0 rgba(22,87,133,0.079);
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 30px 20px;
}
.cta-banner p {
  color: var(--white);
  font-size: 1.25rem;
  font-family: var(--font-display);
}
.cta-banner .cta.primary {
  background: var(--accent);
  color: var(--primary);
  padding: 12px 37px;
  box-shadow: 0 4px 14px 0 rgba(245,194,66,0.17);
}
.cta-banner .cta.primary:hover, .cta-banner .cta.primary:focus {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 26px 0 #dcc45b33;
}
@media (max-width: 800px) {
  .cta-banner .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ==================== TESTIMONIALS (High Contrast!) ==================== */
.testimonials {
  background: #fffbe4;
  padding-bottom: 50px;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonial-card p {
  color: #183246;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  filter: drop-shadow(0 1px 3px #f5c24229);
}
.star-rating img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 44px 0 0 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 80px;
}
footer .container {
  padding-bottom: 0;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
}
footer .logo img {
  height: 44px;
  filter: drop-shadow(0 2px 4px #16578550);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
  color: #eaf5ff;
  border-top: 2px solid #f5c24255;
  margin-top: 18px;
  padding: 16px 0 29px 0;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-bottom a:hover {
  color: var(--white);
}
@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 16px;
  }
}

/* ==================== MISC UTILITY ==================== */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 12px;
}
.text-section ul {
  margin-bottom: 2px;
}
.map {
  margin-top: 26px;
}
li + li {
  margin-top: 6px;
}

/* Artistic Touches: Borders, Accents, Shadows */
.section, .card, .testimonial-card, .about-preview, .services-preview,
.policy {
  box-shadow: var(--shadow);
}

/* ========== POLICY SECTION NORMALIZATION ========== */
.policy {
  background: #fff;
  border-left: 8px solid var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: 0 2px 14px 0 rgba(22,87,133,0.092);
  overflow: hidden;
}
.policy h1, .policy h2, .policy h3 {
  color: var(--primary);
}
.policy .text-section {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section, .about-preview, .services-preview, .policy {
    padding: 25px 6vw;
  }
}

/* ========== RESPONSIVE FLEX LAYOUTS ========== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========== BUTTONS & LINKS ========== */
.cta, .btn {
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #f5c24219;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  margin-top: 8px;
  transition: background 0.21s, color 0.18s, transform 0.16s, box-shadow 0.19s;
  outline: none;
  text-align: center;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.036);
  box-shadow: 0 4px 18px 0 #16578533;
}

/* ========== FORM ELEMENTS ========== */
input, textarea, select {
  border: 1px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border 0.18s;
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}
label {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--dark);
}

/* ========== TABLES, LISTS, OLs ========== */
table {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 8px 0 #95cfff20;
  margin-bottom: 28px;
  overflow: hidden;
}
th, td {
  padding: 12px 11px;
  font-family: var(--font-body);
}
th {
  background: #D9E6EF;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
td {
  color: #223345;
}

/* ========== ANIMATIONS ========== */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slide-in-left {
  from { transform: translateX(-90vw); }
  to   { transform: translateX(0); }
}
@keyframes slide-in-up {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cta-banner, .testimonials, .features, .about-preview, .services-preview {
  animation: fade-in 1s cubic-bezier(.62,0,0,1.09) 0.05s both;
}
.mobile-menu.open {
  animation: slide-in-left 0.38s cubic-bezier(.63,.21,.22,1.25);
}

/* ========== ARTISTIC / CREATIVE TOUCHES ========== */
.hero .content-wrapper, .about-preview, .services-preview, .cta-banner, .testimonials, .section {
  border-top-left-radius: 60px 28px;
  border-bottom-right-radius: 60px 28px;
  box-shadow: 0 6px 32px 0 #16578518;
}
.cta.primary {
  box-shadow: 0 2px 8px 0 #f5c24266, 0 0px 0px 0 #0000;
}
.cta.primary:active { box-shadow: none; }

/* Custom font fallback */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: var(--secondary);
  box-shadow: 0 -4px 42px rgba(21,87,133,0.09);
  border-top: 4px solid var(--accent);
  padding: 24px 18px 22px 18px;
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--dark);
  animation: fade-in .88s cubic-bezier(.63,.21,.22,1.25);
}
.cookie-banner__text {
  flex: 1 1 250px;
  min-width: 180px;
  max-width: 530px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 21px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 0px 7px 0 #0001;
  margin: 0 4px 0 0;
  transition: background 0.18s, color 0.17s, border 0.15s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.accept:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-btn.reject:hover {
  background: var(--secondary);
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px 17px 8px;
    font-size: 0.98rem;
  }
  .cookie-btn {
    width: 100%;
    margin: 4px 0 0 0;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* ===== Cookie Consent Modal ===== */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(25,36,50,0.40);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fade-in 0.33s cubic-bezier(.63,.21,.22,1.25);
}
.cookie-modal__dialog {
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px 0 #22334533;
  padding: 34px 34px 24px 34px;
  max-width: 95vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-display);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}
/* Always enabled for essential */
.cookie-category input[disabled] {
  accent-color: var(--dark);
  opacity: 0.7;
}
.cookie-modal__close {
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.5rem;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  line-height: 1;
}

/* ========== MEDIA QUERIES for SMALL DEVICES ========== */
@media (max-width: 576px) {
  h1, .hero h1 { font-size: 1.5rem; }
  h2, .hero h2 { font-size: 1.15rem; }
  .hero .content-wrapper, .about-preview, .services-preview, .section, .policy {
    padding: 10px 3vw;
  }
}

/* ========== MAKE SURE ALL FLEXBOX PATTERNS APPLIED ========== */
/* Required flexbox gap between cards/sections */
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
}

/* ========== CUSTOM SCROLLBAR (artistic) ========== */
::-webkit-scrollbar {
  width: 12px;
  background: var(--secondary);
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 12px;
}

/* ========== ARTISTIC FONTS ========== */
h1, h2, h3, .cta-banner p {
  letter-spacing: 0.03em;
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
}

/* ========== ENSURE NO GRID/COLS OVERRIDES ==========
All main flex layouts override any accidental grid/cols. */
.card-container, .content-grid, .features, .services, .testimonial-card, .section, .footer-top, .footer-bottom, .content-wrapper, .mobile-nav, .cookie-modal__footer, .cookie-modal__categories, .text-image-section, .feature-item {
  display: flex !important;
  flex-wrap: wrap;
}

/* ========== FOCUS STYLES ========== */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #f5c24224;
}
