/* ================= 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #F4F6FB; color: #243A52; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ================= VARIABLES ================= */
:root {
  --color-primary: #243A52;
  --color-secondary: #F4F6FB;
  --color-accent: #FFB442;
  --color-dark: #161F27;
  --color-text: #243A52;
  --color-bg-light: #F4F6FB;
  --color-bg-accent: #FFF6E7;
  --color-white: #fff;
  --shadow-elevated: 0 4px 18px rgba(36,58,82,0.09);
  --shadow-medium: 0 2px 8px rgba(36,58,82,0.12);
  --radius-base: 14px;
  --radius-corner: 36px;
  --radius-btn: 24px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --trans: all 0.22s cubic-bezier(.45,.17,.58,1.04);
}

/* ================= BASE TYPOGRAPHY ================= */
body {
  font-family: var(--font-body);
  background: var(--color-bg-light);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  line-height: 1.15;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li { font-size: 1rem; line-height: 1.7; }
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  p, ul, ol, li { font-size: 15px; }
}

/* ================= LAYOUT STRUCTURE ================= */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ================= FLEXBOX MANDATORY LAYOUTS ================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-medium);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 2.5px solid var(--color-primary);
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s, border-color 0.2s;
}
.feature-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px rgba(36,58,82,0.17);
  z-index: 2;
}

/* ================= HEADER & NAVIGATION ================= */
header {
  background: var(--color-white);
  box-shadow: 0 1.5px 0 rgba(36,58,82,0.09);
  position: sticky; top: 0; z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  padding: 6px 0 2px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: var(--trans);
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
}
header .cta-btn {
  margin-left: 24px;
}
header img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  border: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  border-radius: 9px;
  padding: 0 12px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.22s;
  z-index: 1002;
  box-shadow: 0 1px 4px rgba(36,58,82,0.18);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.45,.17,.58,1.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-accent);
  border: none;
  font-size: 2.5rem;
  align-self: flex-end;
  padding: 10px 20px;
  margin-bottom: 0;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
  padding: 0 30px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: var(--font-display);
  color: var(--color-accent);
  padding: 4px 0;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.18s, color 0.19s;
  display: block;
}
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  header nav { display: none; }
  header .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ================= HERO SECTION ================= */
.hero {
  background: var(--color-bg-accent);
  border-radius: var(--radius-corner) var(--radius-corner) 0 0;
  box-shadow: var(--shadow-elevated);
  min-height: 290px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 44px 0 36px 0;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  gap: 22px;
  text-align: left;
}
.hero h1 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-size: 2.6rem;
}
.hero h2 {
  color: var(--color-primary);
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.hero p {
  max-width: 540px;
  color: var(--color-dark);
  font-size: 1.09rem;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero { border-radius: 0 0 36px 36px; min-height: 178px; padding: 26px 0 10px 0; }
  .hero .content-wrapper {gap:18px;}
  .hero h1 { font-size:1.38rem; }
  .hero h2 { font-size:1.03rem; }
}

/* ================= FEATURE GRID & SERVICE CARDS ================= */
.feature-grid, .service-cards, .featured-tips, .category-grid, .blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
  justify-content: flex-start;
}
.feature-item img, .feature-item svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: var(--color-bg-accent);
  box-shadow: 0 1.5px 12px rgba(255,180,66,0.08);
  padding: 7px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-card {
  background: var(--color-white);
  border: 2.2px solid var(--color-primary);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-elevated);
  padding: 24px 20px 22px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: border-color 0.22s, box-shadow 0.19s;
  display: flex; flex-direction: column; align-items: flex-start;
}
.service-card h3 {
  margin-bottom: 12px;
  letter-spacing: -0.35px;
}
.service-card span {
  font-size: 0.98rem;
  color: var(--color-accent);
  margin-left: 8px;
  font-weight: 700;
}
.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px rgba(255,180,66,0.13);
  z-index: 2;
}

/* ================= CATEGORY GRID/TAG STYLING ================= */
.category-grid {
  gap: 18px;
}
.category-item {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 22px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.34px;
  font-weight: 600;
  transition: box-shadow 0.14s;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}
.category-item:hover {
  box-shadow: 0 2px 12px rgba(36,58,82,0.12);
  background: var(--color-accent);
  color: var(--color-primary);
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.topic-tags span {
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 18px;
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.21px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ================= BLOG POSTS ================= */
.blog-post {
  background: var(--color-white);
  border: 2.2px solid var(--color-primary);
  border-radius: 18px;
  box-shadow: var(--shadow-medium);
  padding: 24px 20px 22px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: border-color 0.19s, box-shadow 0.17s;
}
.blog-post:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(36,58,82,0.14);
  z-index: 2;
}
.blog-post h3 {margin-bottom: 10px;}

/* ================= SEARCH BAR ================= */
.search-bar {
  display: flex;
  gap: 6px;
  margin: 20px 0 0 0;
  align-items: center;
  width: 100%;
  max-width: 370px;
}
.search-bar input[type=search] {
  flex: 1 1 auto;
  border: 2.5px solid var(--color-primary);
  border-radius: 22px 0 0 22px;
  font-size: 1.02rem;
  background: var(--color-white);
  padding: 9px 18px;
  outline: none;
  transition: border-color 0.18s;
}
.search-bar input[type=search]:focus {
  border-color: var(--color-accent);
}
.search-bar button {
  border-radius: 0 22px 22px 0;
  padding: 8.5px 16px;
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.22s;
  min-width: 45px;
  height: 39px;
  display: flex;
  align-items: center;
}
.search-bar button img {
  width: 21px;
  height: 21px;
}
.search-bar button:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

.quick-filters {
  display: flex;
  gap: 10px;
  margin: 16px 0 0 0;
}
.quick-filters button {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2.5px solid var(--color-primary);
  border-radius: 18px;
  padding: 7px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}
.quick-filters button:hover, .quick-filters button:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* ================= FAQ ACCORDION ================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.faq-item {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 17px;
  padding: 17px 25px;
  transition: border-color 0.14s, box-shadow 0.14s;
  box-shadow: var(--shadow-medium);
}
.faq-item h3 {
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 8px 16px rgba(255,180,66,0.13);
}

/* ================= MAP EMBED ================= */
.map-embed{
  margin: 24px 0 6px 0;
  background: var(--color-bg-accent);
  border-radius: 14px;
  padding: 10px 19px 13px 40px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
}
.map-embed img { width: 34px; margin-right: 20px; }

/* ================= TESTIMONIALS ================= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 22px 0;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--color-white);
  border: 2.2px solid var(--color-accent);
  box-shadow: 0 2px 20px rgba(36,58,82,0.10);
  border-radius: var(--radius-base);
  padding: 25px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 1.08rem;
  font-style: italic;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.testimonial-card span {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.96rem;
  margin-left: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px rgba(36,58,82,0.13);
  border-color: var(--color-primary);
}

/* Ensure good contrast for testimonial/readability */
.testimonial-card p, .testimonial-card span { color: var(--color-primary); }

/* ================= CTA BUTTONS ================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 11px 34px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 2.5px 8px rgba(255,180,66,0.13);
  margin: 12px 0 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.14s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(36,58,82,0.14);
}
@media (max-width: 520px) {
  .cta-btn { padding: 9px 20px; font-size: 1.01rem; }
}

/* ================= FOOTER ================= */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2.5px 16px rgba(36,58,82,0.10);
  margin-top: 60px;
  padding: 44px 0 12px 0;
  font-size: 0.98rem;
}
footer a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color 0.22s;
}
footer a:hover {
  color: var(--color-white);
}
.footer-navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-info {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-info img {
  width: 21px;
  vertical-align: middle;
  margin-right: 6px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  margin: 10px 0 10px 0;
}
.social-media-links a img {
  width: 28px;
  filter: grayscale(55%) brightness(1.2);
  transition: filter 0.17s;
}
.social-media-links a:hover img {
  filter: grayscale(0%) brightness(1.3);
}
.newsletter-signup {
  margin: 24px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
footer p {
  margin: 8px 2px 0 0;
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .feature-grid, .service-cards, .featured-tips, .category-grid, .blog-posts-grid, .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 44px;
    padding: 28px 5px;
  }
  .hero { padding: 24px 0 8px 0; }
  .container { padding: 0 7px; }
  .feature-grid, .service-cards, .featured-tips, .category-grid, .blog-posts-grid, .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item, .service-card, .blog-post, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .newsletter-signup { align-items: stretch; }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 520px) {
  .footer-navigation nav, .social-media-links, .newsletter-signup {
    flex-direction: column;
    gap:8px;
    align-items: stretch;
  }
  .testimonial-card, .blog-post, .feature-item, .service-card {
    padding: 13px 10px 16px 11px;
    border-radius: 12px;
  }
  footer { padding: 22px 0 7px 0; }
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2001;
  box-shadow: 0 -1.5px 20px rgba(36,58,82,.13);
  border-radius: 32px 32px 0 0;
  animation: cookie-slide-up 0.46s cubic-bezier(.45,.17,.58,1.04);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(120%); opacity: 0.1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 6px;
}
.cookie-btn-group {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.02rem;
  transition: background 0.18s, color 0.18s;
  min-width: 110px;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-accent);
  border:1.5px solid var(--color-accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  outline: none;
}

/* ================= COOKIE MODAL POPUP ================= */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,58,82,0.76);
  z-index: 2002;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.28s cubic-bezier(.45,.17,.58,1.04);
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 36px 36px 26px 36px;
  border-radius: 26px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 34px rgba(36,58,82,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-family: var(--font-body);
}
.cookie-modal-content h2 {
  font-size: 1.22rem;
  margin-bottom: 22px;
  color: var(--color-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: var(--color-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 21px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 22px; height: 22px;
  border-radius: 7px;
  margin-right: 4px;
}
.cookie-category input[disabled] {
  opacity: 0.53;
}

/* ================== TABLES & LISTS ================== */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1.2px solid var(--color-primary);
  padding: 8px 14px;
  text-align: left;
}
ul, ol {
  margin: 8px 0 8px 20px;
  list-style: disc inside;
  color: var(--color-primary);
}
li {
  margin-bottom: 4px;
}

/* ================= GEOMETRIC/STRUCTURED DETAILS ================= */
.section {
  position: relative;
}
.section:before {
  content: "";
  position: absolute;
  left: -16px; top: -21px;
  width: 56px; height: 56px;
  background: var(--color-accent);
  border-radius: 18px 10px 32px 7px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.section:nth-child(even):before {
  left: unset; right: -12px; top: -21px;
}
@media (max-width: 768px) {
  .section:before, .section:nth-child(even):before { display: none; }
}

/* Section heading geometric underline */
h2 {
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  display: block;
  width: 55px;
  height: 5px;
  margin-top: 5px;
  background: var(--color-accent);
  border-radius: 3px;
}
@media (max-width: 450px) {
  h2:after { width: 32px; }
}

/* Geometric accent for list items */
ul li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 10px; height: 10px;
  background: var(--color-accent);
  border-radius: 2.5px 2.5px 7.5px 2.5px;
}

/* ================= MISC ================= */
::-webkit-scrollbar {
  width: 11px;
  background: var(--color-bg-light);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 22px;
}
::-webkit-input-placeholder { color: #b2bfcf !important; }
::-moz-placeholder  { color: #b2bfcf !important; }
:-ms-input-placeholder { color: #b2bfcf !important; }
::placeholder { color: #b2bfcf !important; }

/* Prevent user overlap & stacking */
* { z-index: auto !important; position: relative; }
header, .mobile-menu, .cookie-consent-banner, .cookie-modal { z-index: 1000 !important; }

/* ===================== END CSS ===================== */
