/* 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,
summar,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #FBF8F4;
  color: #234068;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

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

/* CSS VARIABLES (with fallback) === */
:root {
  --primary: #234068;
  --secondary: #C6D0DB;
  --accent: #E0B05F;
  --bg: #FBF8F4;
  --text: #234068;
  --text-light: #fff;
  --shadow: 0 2px 8px rgba(35,40,70,0.07);
  --shadow-md: 0 4px 18px rgba(35,40,70,0.14);
  --border-radius: 18px;
  --border-radius-lg: 26px;
  --border-radius-sm: 10px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition: 0.24s cubic-bezier(.66,.04,.3,1);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 18px;
}

/* TYPOGRAPHY ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.13;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}
p, li, label, input, select {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
p {
  margin-bottom: 10px;
}
.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--primary);
  margin-bottom: 22px;
}
.text-section > h2,
.text-section > h3,
.text-section > h4 {
  color: var(--primary);
}

.text-section {
  margin-bottom: 16px;
}

.text-section ul,
ul {
  list-style-type: disc;
  margin-left: 22px;
  margin-bottom: 16px;
  color: var(--primary);
}
.text-section ul > li {
  margin-bottom: 8px;
  color: var(--text);
}
.text-section a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color var(--transition);
}
.text-section a:hover {
  color: var(--accent);
}

/* BUTTONS ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  border-radius: var(--border-radius);
  padding: 13px 33px;
  transition: background-color var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  outline: none;
  margin-bottom: 8px;
  margin-right: 10px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(224,176,95,0.14);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #db9533;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #1a2d49;
  color: var(--accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* COMMON SPACING ===================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 7px;
    border-radius: var(--border-radius);
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* HEADER/NAVIGATION ================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,64,104,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.9;
  transition: color var(--transition), opacity var(--transition);
  border-radius: 5px;
  padding: 4px 9px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  opacity: 1;
  background: rgba(224,176,95,0.12);
}
header .btn-primary {
  margin-right: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

/* MOBILE MENU ------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.3rem;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  margin-left: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 502;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}
@media (max-width: 920px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.27,1);
  z-index: 500;
  box-shadow: 0 0 22px 0 rgba(35,64,104,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.mobile-menu-close:focus {
  outline: 2px solid var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 13px 7px 10px 7px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
}
/* --- Menu overlay BG --- */
.mobile-menu.open::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,104,0.21);
  z-index: -1;
}

/* HERO ============================================================== */
section:first-child {
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: none;
  margin-bottom: 60px;
}
section:first-child .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
section:first-child h1 {
  color: #fff;
}
section:first-child .subtitle {
  color: #e6e6e6;
}
section:first-child .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
section:first-child .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  section:first-child {
    padding: 26px 0 22px 0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-bottom: 35px;
  }
}

/* FEATURES & SERVICE LISTS =========================================== */
.features-grid, .services-grid, .listings-grid, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 12px;
  margin-bottom: 4px;
}
.feature-item, .service-card, .listing-card, .article-list article {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 250px;
  min-height: 185px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item:hover, .service-card:hover, .listing-card:hover, .article-list article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.012);
}
.feature-item img {
  width: 49px;
  height: 49px;
  border-radius: var(--border-radius-sm);
  background: var(--secondary);
  padding: 7px;
}
.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.service-card h3 {
  margin-bottom: 7px;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 5px;
}
.listing-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.listing-detail {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 7px;
}
.article-list article h3 {
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 1.2rem;
}
.article-list article p {
  color: #444;
}
@media (max-width: 1040px) {
  .features-grid, .services-grid, .listings-grid, .article-list {
    gap: 16px;
  }
  .feature-item, .service-card, .listing-card, .article-list article {
    min-width: 220px;
    padding: 18px 10px 16px 10px;
  }
}
@media (max-width: 768px) {
  .features-grid, .services-grid, .listings-grid, .article-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-card, .listing-card, .article-list article {
    min-width: 0;
    width: 100%;
  }
}

/* TESTIMONIALS SLIDER ================================================ */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff8ee;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(224,176,95,0.13);
  padding: 20px 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 260px;
  max-width: 440px;
  color: #2a2741;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  color: #2a2741;
  font-size: 1.08rem;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-display);
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(224,176,95,0.21);
  transform: translateY(-2px) scale(1.023);
}
@media (max-width: 768px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}
footer li {
  color: white !important;
}
/* CTA SECTION ======================================================== */
.text-section {
  background: rgba(255,255,255,1);
  border-radius: var(--border-radius);
  padding: 24px 13px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.text-section h2 {
  color: var(--primary);
  margin-bottom: 10px;
}
.text-section p {
  margin-bottom: 12px;
}
.text-section .btn {
  margin-top: 12px;
}


/* FORMS & FILTERS ==================================================== */
.filters-form, .category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  background: #f6f3ee;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 18px 16px;
}
.filters-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary);
}
.filters-form input[type="text"],
.filters-form select,
.category-filters select {
  margin-top: 4px;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--secondary);
  background: #fff;
  font-size: 1rem;
  box-shadow: 0 1px 5px rgba(198,208,219,0.09);
  color: var(--primary);
  transition: border-color var(--transition);
}
.filters-form select:focus, .filters-form input:focus {
  border-color: var(--accent);
  outline: none;
}
.filters-form .btn-secondary {
  margin-left: 10px;
  margin-bottom: 0;
  padding: 10px 22px;
}
@media (max-width: 768px) {
  .filters-form, .category-filters {
    flex-direction: column;
    gap: 13px;
    padding: 15px 7px;
  }
}

/* FAQ =============================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0;
}
.faq-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 19px 20px 13px 19px;
  margin-bottom: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}
.faq-item h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.faq-item p {
  margin: 0;
  color: var(--text);
}

/* MAP PLACEHOLDER =================================================== */
.map-contact {
  background: #e4e7ea;
  border-radius: var(--border-radius);
  padding: 30px 16px;
  min-height: 120px;
  color: #7c8590;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.03rem;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(35,64,104,0.06);
}
.map-placeholder {
  color: #707b8c;
}

/* FOOTER ============================================================ */
footer {
  background: var(--primary);
  color: var(--text-light);
  margin-top: 60px;
  padding: 0;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  padding: 35px 0 22px 0;
}
.footer-brand img {
  height: 54px;
  padding-bottom: 6px;
}
.footer-contact, .footer-menu, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact ul, .footer-menu ul {
  margin: 0;
  margin-left: 0;
  list-style: none;
  color: #e7eaf5;
}
.footer-contact a, .footer-menu a {
  color: #e7eaf5;
  transition: color var(--transition), text-decoration var(--transition);
}
.footer-contact a:hover, .footer-menu a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-menu h3, .footer-contact h3, .footer-social h3 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 2px;
}
.footer-social a {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  background: rgba(224,176,95,0.07);
  width: 38px;
  height: 38px;
  transition: background var(--transition);
  justify-content: center;
}
.footer-social a:hover {
  background: var(--accent);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-bottom {
  padding: 17px 0 8px 0;
  text-align: center;
  color: #c6d0db;
  font-size: 0.96rem;
  border-top: 1.5px solid rgba(198,208,219,0.18);
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand img {
    height: 40px;
  }
}

/* BUSINESS HOURS ==================================================== */
.business-hours {
  background: #e9eef2;
  color: var(--primary);
  border-radius: var(--border-radius);
  padding: 18px 12px 8px 23px;
  margin-bottom: 8px;
}
.business-hours li {
  margin-bottom: 7px;
  font-size: 1.07rem;
}

/* SPECIAL CARDS & COMPARISON ========================================= */
.comparison-table {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 27px 20px 21px 22px;
  margin-top: 9px;
  margin-bottom: 13px;
}
.comparison-table h3 {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.comparison-table ul {
  color: var(--primary);
  padding-left: 24px;
}
.comparison-table li {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

/* TABLES (if any future tables) ====================================== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 18px;
  margin-bottom: 18px;
  overflow: hidden;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
}
th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
}
td {
  font-size: 1rem;
}
tr:last-child td {
  border-bottom: none;
}

/* RESPONSIVE FLEXBOX LAYOUT RULES ==================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 17px;
}
.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) {
  .card-container {
    gap: 13px;
  }
  .content-grid {
    gap: 15px;
  }
  .text-image-section {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid, .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
}

/* TRANSITIONS & INTERACTIVITY ======================================== */
a, .btn, .feature-item, .service-card, .listing-card, .testimonial-card, .faq-item {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition) !important;
}
@media (hover:hover) and (pointer:fine) {
  a:hover, .btn:hover, .feature-item:hover, .service-card:hover, .listing-card:hover, .faq-item:hover {
    box-shadow: 0 2px 18px rgba(35,64,104,0.13);
    transform: translateY(-2px) scale(1.01);
  }
}

/* COOKIE CONSENT BANNER & MODAL ===================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: #fff8ee;
  color: var(--primary);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -4px 22px 0 rgba(224,176,95,0.13);
  padding: 26px 17px 21px 17px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 530px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(35px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.cookie-banner.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
  pointer-events: all;
}
.cookie-banner p {
  font-size: 1.05rem;
  line-height: 1.6;
}
.cookie-banner .btn {
  margin-right: 8px;
  margin-bottom: 0;
  font-size: 1rem;
  padding: 8px 22px;
}
.cookie-banner .btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .btn-secondary {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-tertiary {
  background: transparent;
  color: var(--primary);
  border: 1.4px solid var(--primary);
  padding: 7px 20px;
  border-radius: var(--border-radius-sm);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-banner .btn-tertiary:hover {
  background: #f4e1c5;
}
@media (max-width: 660px) {
  .cookie-banner {
    max-width: 99vw;
    padding: 15px 4vw 15px 4vw;
  }
}

/* Cookie Modal -------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,104,0.16);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff8ee;
  color: var(--primary);
  border-radius: var(--border-radius-lg);
  min-width: 310px;
  max-width: 460px;
  box-shadow: 0 0 34px 0 rgba(224,176,95,0.14), 0 2px 3px #efe5d9;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  animation: fadeInUp 0.32s;
}
@keyframes fadeInUp {
  from {opacity:0;transform: translateY(32px);}
  to {opacity:1;transform: translateY(0);}
}
.cookie-modal-content h3 {
  font-size: 1.13rem;
  color: var(--accent);
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 13px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.35rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover {
  background: #db9533;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  color: var(--primary);
}
.cookie-category label {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary);
  user-select: none;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-category.essential label {
  color: #b79d67;
  font-style: italic;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #b79d67;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal .btn {
  font-size: 1rem;
  padding: 8px 19px;
}
@media (max-width: 550px) {
  .cookie-modal-content {
    min-width: 0;
    max-width: 97vw;
    padding: 24px 4vw 14px 4vw;
  }
  .cookie-modal-close {
    top: 10px; right: 7px;
    width: 34px; height: 34px;
  }
}

/* MODAL/OVERLAY GENERIC --------------------------------------------- */
[aria-modal="true"] {
  /* Special accessibility marker */
  overflow: hidden;
}

/* THANK YOU PAGE ================================================ */
.text-section h1 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 13px;
}
.text-section a.btn {
  margin-top: 18px;
}

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

/* EXTRA: Utility Classes ============================================ */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-8 { margin-top:8px!important; }
.mb-8 { margin-bottom:8px!important; }

/* END OF CSS */
