/* ---------------------- CSS RESET & BASE ---------------------- */
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;
  background: #f7f9fa;
  color: #153153;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* ---------------------- VARIABLES (w/ Fallback) ---------------------- */
:root {
  --primary: #153153;
  --secondary: #cca43b;
  --accent: #f2f5f8;
  --neutral: #ffffff;
  --danger: #B03F3F;
  --shadow: 0 4px 24px rgba(21,49,83,0.11);
  --radius-m: 18px;
  --radius-s: 10px;
  --radius-xs: 6px;
}

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

h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  line-height: 1.15;
}

h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.33;
}

h4, h5, h6 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
}

p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #253153;
  margin-bottom: 14px;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.20s;
}
a:hover, a:focus {
  color: #b88e33;
  text-decoration: underline;
}

strong, b {
  font-weight: 700;
  color: #153153;
}

em, i {
  font-style: italic;
  color: #5a5a5a;
}

.subheadline {
  font-size: 1.2rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #153153;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

hr {
  border: 0;
  border-top: 2px dashed var(--secondary);
  margin: 32px 0;
}


/* ---------------------- CONTAINER & SECTIONS ---------------------- */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.text-section ul, .text-section ol {
  margin-left: 20px;
}

.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

ul, ol {
  margin-bottom: 14px;
  margin-left: 20px;
  /* bullet style later */
}
/* Artistic, brush-themed bullet for li */
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  margin-right: 10px;
  vertical-align: middle;
}

/* ---------------------- LAYOUT HELPERS ---------------------- */
.card-container, .service-cards, .featured-articles-grid, .faq-list, .blog-topic-list, .newsletter-benefit-list ul, .faq .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(21,49,83,0.18);
  transform: translateY(-5px) scale(1.015);
}

.service-card, .service-detail {
  background: var(--neutral);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 28px 22px 24px 22px;
  margin-bottom: 24px;
  flex: 1 1 280px;
  min-width: 270px;
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid var(--secondary);
}
.service-card:hover, .service-detail:hover {
  box-shadow: 0 8px 32px rgba(204, 164, 59, .15);
  transform: translateY(-4px) scale(1.014);
}

.price {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.featured-articles-grid {
  gap: 24px;
}
.featured-articles-grid article {
  background: var(--accent);
  border-radius: var(--radius-s);
  padding: 26px 20px 18px 20px;
  box-shadow: 0 1px 6px rgba(21,49,83,0.10);
  transition: box-shadow .2s, transform .2s;
  flex: 1 1 280px;
  min-width: 260px;
  margin-bottom: 18px;
}
.featured-articles-grid article:hover {
  box-shadow: 0 6px 20px rgba(21,49,83,0.19);
  transform: translateY(-4px) scale(1.01);
}

.blog-topic-list {
  gap: 12px;
  flex-wrap: wrap;
}
.blog-topic-list li {
  background: var(--secondary);
  color: var(--neutral);
  border-radius: var(--radius-xs);
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(204,164,59, 0.07);
  display: inline-block;
}

.mini-case-study {
  background: var(--accent);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-s);
  box-shadow: 0 2px 6px rgba(21,49,83,0.09);
  padding: 16px 16px 8px 20px;
  margin-bottom: 18px;
  max-width: 400px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Various preview & CTA blocks */
.testimonials-preview, .about-preview, .cta-home, .cta-services, .cta-newsletter {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
}

.cta-home ul, .cta-services ul {
  margin-left: 16px;
}

/* ---------------------- HEADER & NAVIGATION ---------------------- */
header {
  background: var(--neutral);
  box-shadow: 0 2px 12px rgba(21,49,83, 0.06);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
}

header a img {
  height: 44px;
  margin-right: 18px;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 6px 0;
  border-radius: var(--radius-xs);
  letter-spacing: 0.01em;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav > a:not(.btn-primary):hover, .main-nav > a:not(.btn-primary):focus {
  color: var(--secondary);
  background: rgba(204,164,59,0.08);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-s);
  padding: 10px 28px;
  box-shadow: 0 2px 8px rgba(204,164,59, .12);
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-left: 8px;
  transition: background .15s, box-shadow .2s, transform .14s;
  text-decoration: none;
  position: relative;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #b88e33;
  color: var(--neutral);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 24px rgba(204,164,59,0.18);
}

/* Hamburger (mobile) */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-xs);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  margin-left: 12px;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #b88e33;
  color: var(--neutral);
}
@media (max-width: 1040px) {
  .main-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  header .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ---------------------- MOBILE SIDE MENU ---------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 340px;
  background: var(--primary);
  box-shadow: -4px 0 38px 10px rgba(21,49,83,.21);
  z-index: 1002;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.6,.09,.41,1), box-shadow .24s;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 20px 5px 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover {
  color: #f2f5f8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-left: 32px;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 7px 0 7px 4px;
  border-radius: var(--radius-xs);
  transition: background .19s, color .22s;
  min-width: 160px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Overlay for menu (using a full-screen overlay as background) */
body.menu-open:after {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,49,83, 0.52);
  z-index: 1000;
  pointer-events: all;
}
@media (min-width: 769px) {
  .mobile-menu { display: none!important; }
}

/* ---------------------- HERO SECTION ---------------------- */
.hero {
  background: linear-gradient(93deg, var(--secondary) 13%, var(--accent) 87% );
  min-height: 300px;
  padding: 70px 0 50px 0;
  border-bottom-left-radius: 180px 36px;
  border-bottom-right-radius: 120px 24px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
}

.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  padding-left: 5px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  text-shadow: 2px 4px 0px #ffc06722;
  margin-bottom: 14px;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #1e244b;
}

@media (max-width: 768px) {
  .hero { padding: 36px 0 28px 0; border-bottom-left-radius: 70px 18px; border-bottom-right-radius: 50px 8px; }
  .hero .container { padding: 0 4px; }
  .hero h1 { font-size: 1.6rem; }
  .hero .subheadline { font-size: 1rem; }
}

/* ---------------------- FEATURES / LISTS ---------------------- */
.feature-list,
ul.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: flex-start;
}
.feature-list li {
  background: #fffefd;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 6px rgba(21,49,83,0.05);
  padding: 13px 18px 13px 13px;
  min-width: 210px;
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}
.feature-list li img {
  width: 26px;
  height: 26px;
  margin-right: 9px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------- TESTIMONIALS ---------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--neutral);
  border-radius: var(--radius-m);
  box-shadow: 0 3px 19px rgba(21,49,83,0.07);
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid var(--secondary);
  color: #111827;
  font-size: 1.1rem;
  max-width: 520px;
  transition: box-shadow .2s, transform .19s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px rgba(204,164,59,0.14);
  transform: translateY(-4px) scale(1.014);
}
.testimonial-card p {
  color: #193653;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card strong {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.star-rating {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  letter-spacing: 0.18em;
  font-size: 1.18rem;
  margin-top: -10px;
  user-select: none;
}
/* Ensure reviews are always dark on light */
.testimonial-card,
.testimonial-card p, .testimonial-card strong {
  background: var(--neutral) !important;
  color: #153153 !important;
}

@media (max-width: 600px) {
  .testimonial-card { padding: 17px 10px; }
}

/* ---------------------- FAQ ---------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--accent);
  border-radius: var(--radius-m);
  padding: 20px 18px 16px 18px;
  box-shadow: 0 2px 8px rgba(21,49,83,0.07);
  transition: box-shadow .18s, transform .18s;
}
.faq-item h3 {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(204,164,59,0.11);
  transform: translateY(-3px) scale(1.01);
}


/* ---------------------- FOOTER ---------------------- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 16px 0;
  position: relative;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-links nav a {
  color: var(--secondary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color .22s;
  opacity: 0.95;
  margin-bottom: 6px;
}
.footer-links nav a:hover,
.footer-links nav a:focus {
  color: var(--accent);
  text-decoration: underline;
  opacity: 1;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.brand-footer img {
  height: 46px;
  margin-bottom: 4px;
}
.address-footer {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.copy {
  font-size: 0.95rem;
  color: #eee;
  margin-top: 6px;
}

/* ---------------------- COOKIE BANNER & MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--neutral);
  color: #193653;
  border-top: 4px solid var(--secondary);
  padding: 22px 12px 26px 12px;
  box-shadow: 0 -4px 16px rgba(21,49,83,0.09);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: slideInBanner .5s cubic-bezier(.44,.08,.92,1.21);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  transition: background .19s, color .17s;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover {
  background: #b88e33;
  color: var(--neutral);
}
.cookie-banner .cookie-reject {
  background: var(--primary);
  color: var(--neutral);
}
.cookie-banner .cookie-reject:hover {
  background: var(--danger);
  color: var(--neutral);
}
.cookie-banner .cookie-settings {
  background: var(--neutral);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--secondary);
  color: var(--neutral);
}
@keyframes slideInBanner {
  0% { transform: translateY(90px); opacity: 0; }
  80% { opacity: 0.7; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1200;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(21,49,83, 0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .26s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; } 100% { opacity: 1; }
}

.cookie-modal {
  background: var(--neutral);
  padding: 32px 22px 22px 22px;
  border-radius: var(--radius-m);
  max-width: 440px;
  min-width: 285px;
  box-shadow: 0 10px 38px rgba(204,164,59,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  position: relative;
  animation: scaleInCookie .3s cubic-bezier(.6,1.1,.71,.97);
}
@keyframes scaleInCookie {
  from{transform:scale(.8);opacity:0;}to{transform:scale(1);opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.18rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  width: 100%;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #153153;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  border-radius: var(--radius-xs);
  margin-right: 3px;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 17px; right: 19px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  transition: color .2s;
}
.cookie-modal .cookie-close-modal:hover {
  color: var(--danger);
}
.cookie-modal .cookie-btns {
  flex-direction: row;
  gap: 12px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 8px;
}

/* Always enable visually: essential cookies disabled toggle, gray out */
.cookie-essential[disabled] + label {
  color: #bababa;
  text-decoration: line-through;
  cursor: not-allowed;
}

@media (max-width: 450px) {
  .cookie-modal { max-width:92vw; min-width: unset; }
  .cookie-modal h2 { font-size:1rem; }
}


/* ---------------------- RESPONSIVE / MOBILE ---------------------- */
@media (max-width: 1000px) {
  .container { max-width: 96vw; }
}

@media (max-width: 800px) {
  .container { padding: 0 9px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  .card, .service-card, .service-detail { padding: 16px 9px; }
  .section, .about-preview, .cta-home, .testimonials-preview { padding: 22px 7px; }
}
@media (max-width: 680px) {
  .service-cards, .card-container, .featured-articles-grid, .content-grid, .blog-topic-list, .feature-list { flex-direction: column; gap: 18px; }
}
@media (max-width: 500px) {
  .section, .about-preview, .cta-home, .cta-services, .cta-newsletter { padding: 12px 3px!important; }
  .card, .service-card, .service-detail { padding: 9px 5px !important; }
}


/* ---------------------- ANIMATIONS & MICRO-INTERACTIONS ---------------------- */
.btn-primary, .main-nav > a, .mobile-nav a {
  transition: background .19s, color .15s, box-shadow .22s, transform .12s;
}
.card, .service-card, .service-detail, .featured-articles-grid article, .testimonial-card, .faq-item {
  transition: box-shadow .19s, transform .17s;
}
.card:active, .service-card:active, .btn-primary:active {
  transform: scale(.98);
}

/* Artistic Touches */
.section {
  border-bottom: 5px solid var(--secondary);
}
@media (max-width: 600px) {
  .section, .about-preview, .cta-home { border-bottom: 3px solid var(--secondary); }
}

/* Unique overlays/decoration */
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px; right: 36px;
  width: 70px; height: 10px;
  background: var(--secondary);
  opacity: .25;
  border-radius: 10px 20px 22px 25px;
  z-index: 1;
}

@media (max-width: 500px) {
  .section:after { right: 9px; width:40px; height:6px; }
}


/* ---------------------- OTHER UI ELEMENTS ---------------------- */
.map-location {
  background: var(--accent);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  font-size: .977rem;
  margin-top: 10px;
  box-shadow: 0 1px 4px rgba(204,164,59,.11);
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 700px) {
  .contact-details { flex-direction: column; gap: 15px; }
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  font-size: 1.035rem;
}

/* Hide cookie banner/modal visually for JS (shown by .show / .open class)*/
.cookie-banner, .cookie-modal-overlay { display: none; }
.cookie-banner.show { display: flex; }
.cookie-modal-overlay.show { display: flex; }

/* Utility */
.hide { display: none !important; }

/* ------------------------------------------------------------
    END OF MINGLEMIST CSS
------------------------------------------------------------ */
