/* --------------------------------------------
   CSS RESET & BASE STYLES (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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #123B64;
  background: #FCFAFE;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #123B64;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.79,.14,.15,.86);
  outline: none;
}
a:focus {
  outline: 2px dashed #123B64;
  outline-offset: 4px;
}
ul, ol {
  margin-left: 1.5em;
}

/* --------------------------------------------
   BRAND & ARTISTIC COLORS
--------------------------------------------- */
:root {
  --primary: #123B64;
  --secondary: #EEF2F7;
  --accent: #F5AF42;
  --bg: #FCFAFE;
  --text: #123B64;
  --text-light: #2D527C;
  --white: #FFFFFF;
  --shadow: rgba(30, 49, 90, 0.11);
  --radius: 18px;
  --border: rgba(18,59,100,0.09);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;   /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem; /* 18px */
}
strong {
  font-weight: 700;
  color: var(--primary);
}
p, li {
  font-size: 1.0625rem; /* 17px */
  color: var(--text-light);
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Artistic headings effect */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--accent);
  border-radius: 10px;
  margin: 12px 0 0 0;
  opacity: 0.77;
}

/* Article typography */
article h3 {
  font-size: 1.26rem;
  margin-bottom: 8px;
  color: var(--accent);
}

/* --------------------------------------------
   BASE LAYOUT CONTAINERS
--------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

/* Section Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

@media (max-width: 900px) {
  .container { max-width: 800px; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .container { padding: 0 6px; }
}

/* --------------------------------------------
   HEADER & MAIN NAVIGATION
--------------------------------------------- */
.header-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(1px 3px 8px rgba(18,59,100,0.07));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cta-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 18px var(--shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
  position: relative;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 22px 0 rgba(245,175,66,.14);
}

/* Artistic underline on CTA */
.cta-btn:after {
  content: '';
  display: block;
  width: 35%;
  height: 3px;
  margin: 6px auto 0 auto;
  background: var(--primary);
  border-radius: 12px;
  opacity: 0.11;
}

/* --------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 6px 12px;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:focus {
  color: var(--accent);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(18,59,100,0.98);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  align-self: flex-end;
  padding: 18px 20px 0 0;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.18s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  align-items: flex-start;
  padding: 0 24px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,175,66,0.15);
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFFFFF;
  outline: none;
  background: rgba(245,175,66,0.07);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* Overlay body lock when menu open */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ------------------------------------------
   HERO SECTIONS
------------------------------------------ */
.hero {
  background: linear-gradient(108deg, var(--secondary), #E7EDFA 72%, #FFF7ED 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  box-shadow: 0px 7px 35px 0 rgba(100,138,180,0.07);
  position: relative;
}
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero .content-wrapper {
  margin: 0 auto;
  max-width: 750px;
}

@media (max-width: 660px) {
  .hero {
    padding: 36px 0 18px 0;
    min-height: 120px;
  }
}

/* ------------------------------------------
   FEATURE GRIDS
------------------------------------------ */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 28px;
}
.feature-grid > div {
  flex: 1 0 250px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 11px 0 var(--shadow);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow 0.27s, transform 0.17s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(245,175,66,0.20);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  z-index: 2;
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px #F5AF4212);
}
.feature-grid h3 {
  font-size: 1.19rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid p {
  color: var(--text-light);
  font-size: 1.01rem;
  margin-bottom: 6px;
}

/* Responsive feature grid */
@media (max-width: 900px) {
  .feature-grid { gap: 20px; }
  .feature-grid > div { min-width: 180px; }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
    padding: 22px 10px 17px 10px;
  }
}

/* --------------------------------------------
   SERVICES SECTIONS
--------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px var(--shadow);
  padding: 30px 24px 24px 24px;
  min-width: 225px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
  border-bottom: 4px solid var(--accent);
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(245,175,66,0.15);
  transform: scale(1.018) rotate(0.7deg);
}
.service-card h3 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.service-card .service-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 0;
}
.service-list > div:last-child {
  margin-right: 0;
}

@media (max-width:900px) {
  .service-list {
    gap: 15px;
  }
}
@media (max-width:600px) {
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    min-width: 0;
    width: 100%;
    padding: 24px 10px 18px 10px;
  }
}

/* --------------------------------------------
   TESTIMONIALS
--------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--secondary);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 30px;
}
.testimonial-card {
  flex: 1 1 330px;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 3px 18px var(--shadow);
  color: #26385c;
  font-size: 1.09rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.17s, transform 0.1s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(245,175,66,0.18);
  transform: translateY(-6px) rotate(-1.5deg) scale(1.015);
}
.testimonial-card p {
  color: #182949;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #424242;
  font-size: .99rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width:800px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 20px 10px;
  }
}

/* --------------------------------------------
   ABOUT & TEXT SECTION STYLES
--------------------------------------------- */
.about, .contact {
  margin-bottom: 60px;
  padding: 40px 0;
}
.text-section {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: var(--primary);
}
.text-section ul {
  margin-bottom: 10px;
  padding-left: 28px;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

/* --------------------------------------------
   CONTACT CTA / NEWSLETTER CTA
--------------------------------------------- */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 6px 26px var(--shadow);
  padding: 36px 24px;
  margin-top: 36px;
  margin-bottom: 36px;
}
.cta h2, .cta p {
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-btn {
  margin-top: 14px;
  margin-bottom: 0;
}
@media (max-width:600px) {
  .cta { padding: 22px 5px; }
}

/* ------------------------------------------
   ARTICLE & BLOG LISTINGS
------------------------------------------ */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 33px;
}
.article-list article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px var(--shadow);
  padding: 26px 20px 22px 20px;
  flex: 1 1 290px;
  min-width: 230px;
  transition: box-shadow 0.16s, transform 0.11s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid var(--accent);
}
.article-list article:hover {
  box-shadow: 0 12px 35px 0 rgba(245,175,66,0.19);
  transform: scale(1.016) rotate(-1deg);
  z-index: 1;
}
.article-list a {
  color: var(--primary);
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
  transition: color 0.17s;
}
.article-list a:hover, .article-list a:focus {
  color: var(--accent);
  outline: none;
}

/* --------------------------------------------
   CARDS, CAROUSEL-LIKE, FEATURED
--------------------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.featured-articles {
  padding-top: 16px;
}
.featured-articles h4 {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.featured-articles ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.featured-articles a {
  color: var(--primary);
  border-bottom: 1px dotted var(--accent);
  transition: color .15s;
}
.featured-articles a:hover { color: var(--accent); }

/* --------------------------------------------
   FOOTER
--------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0 12px 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1.01rem;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}

.footer-main .logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(1px 2px 7px #F5AF4218);
}
.footer-copy {
  font-size: 0.95rem;
  opacity: 0.65;
  padding-left: 8px;
}
@media (max-width: 650px) {
  .footer-main {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* --------------------------------------------
   BLOG/ARTICLE CATEGORY LISTS
--------------------------------------------- */
.blog-category-list ul, .price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 22px 0 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: var(--primary);
  list-style-type: disc;
  padding-left: 14px;
}
.price-list li {
  margin-bottom: 4px;
  color: var(--text-light);
}

/* --------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background: var(--primary);
  color: var(--white);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -3px 20px #891c1614;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeInCookie 0.7s cubic-bezier(.79,.14,.15,.86);
}
@keyframes fadeInCookie {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
  color: var(--primary);
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px #F5AF4214;
  transition: background 0.18s, color 0.17s, box-shadow 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--white);
  color: var(--accent);
  outline: none;
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--accent);
}
.cookie-btn.secondary:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-bg {
  background: rgba(18, 59, 100, 0.79);
  position: fixed;
  z-index: 10002;
  left: 0; right: 0; top: 0; bottom: 0;
  animation: fadeInCookieModalBg 0.41s cubic-bezier(.79,.14,.15,.86);
}
@keyframes fadeInCookieModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 300px;
  width: 94vw;
  max-width: 420px;
  max-height: 94vh;
  background: var(--white);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 8px 48px #123b6431;
  z-index: 10003;
  transform: translate(-50%, -50%) scale(1.04);
  animation: slideUpCookieModal 0.44s cubic-bezier(.37,.84,.41,1.02);
  display: flex;
  flex-direction: column;
  padding: 32px 22px 22px 22px;
  gap: 18px;
}
@keyframes slideUpCookieModal {
  from { opacity: 0; transform: translate(-50%, 24%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: var(--secondary);
  position: relative;
  outline: none;
  border: 1.5px solid var(--accent);
  vertical-align: middle;
  transition: background 0.17s, border-color 0.17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
  border-color: var(--primary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 1.8px;
  left: 3px;
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px #F5AF4211;
  transition: left 0.15s;
}
.cookie-toggle:checked::after {
  left: 17px;
}

.cookie-modal .close {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 1.7rem;
  position: absolute;
  right: 19px;
  top: 16px;
  cursor: pointer;
}

/* --------------------------------------------
   MICRO-INTERACTIONS & HOVER EFFECTS
--------------------------------------------- */
button, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.18s, background 0.16s, color 0.17s, transform 0.13s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* -- Artistic DIVIDER for visual rhythm -- */
.divider {
  width: 120px;
  height: 5px;
  border-radius: 3px;
  margin: 36px auto;
  background: linear-gradient(90deg, var(--accent) 0%, #FFFDE0 100%);
  opacity: 0.72;
}

/* --------------------------------------------
   FOCUS & ACCESSIBILITY
--------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent) !important;
}

/* --------------------------------------------
   SCROLLBAR
--------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e4e8ef;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F5AF42;
}

/* --------------------------------------------
   Z-INDEX SANITY (prevent overlap)
--------------------------------------------- */
.header-bar, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-bg {
  z-index: 1000;
}

/* --------------------------------------------
   EXTRAS - Miscellaneous tweaks
--------------------------------------------- */
hr {
  border: 0;
  height: 2px;
  background: var(--secondary);
  margin: 24px 0;
  border-radius: 2px;
}

/* --------------------------------------------
   Print stylesheet (clean output)
--------------------------------------------- */
@media print {
  .header-bar, .main-nav, .mobile-menu,
  .footer-main, .cookie-banner, .cookie-modal-bg, .cookie-modal { display:none !important; }
  body { color: #000; background: #fff; }
}
