/* =========================================================
   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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #fafbfc;
  color: #1a2530;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border-radius: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, li {
  list-style: none;
}

/* =========================================================
   Luxury Premium Color Scheme & Fonts
   ========================================================= */
:root {
  --primary: #255478;
  --primary-dark: #183348;
  --secondary: #83B9E2;
  --accent: #E9F3FA;
  --background: #fafbfc;
  --card-bg: #fff;
  --gold: #C2A15B;
  --gold-dark: #947837;
  --grey-900: #1a2530;
  --grey-700: #49546f;
  --grey-500: #7b88a1;
  --grey-100: #f5f6fa;
  --shadow: rgba(33,38,57,0.08);
  --header-height: 80px;

  --radius-lg: 18px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap') format('woff2');
  font-weight: 600 700;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap') format('woff2');
  font-weight: 400 600 700;
  font-display: swap;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--grey-900);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.19;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; font-weight: 600;}
h4, h5 { font-size: 1.1rem; font-weight: 600;}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
p, ul, li, table, label {
  font-size: 1rem;
  color: var(--grey-900);
}
strong { color: var(--primary); font-weight: 700; }

/* =========================================================
   Layout Container, Section & Core Spacing
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
.hero,
.hero-tips,
.features,
.services-preview,
.services,
.benefits,
.tips-list,
.faqs,
.cta-section,
.tips-cta,
.faq-cta,
.thank-you-section,
.contact,
.hours,
.team,
.values,
.gdpr-policy,
.cookies-policy,
.privacy-policy,
.terms-of-use {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .section,.hero,.hero-tips,.features,.services-preview,.services,.benefits,.tips-list,.faqs,.cta-section,.tips-cta,.faq-cta,.thank-you-section,.contact,.hours,.team,.values,.gdpr-policy,.cookies-policy,.privacy-policy,.terms-of-use{
    padding: 32px 0;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.service-card,
.service-block,
.testimonial-card,
.tip-item {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--shadow);
  margin-bottom: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #ececec;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.card:hover,
.service-card:hover,
.service-block:hover,
.testimonial-card:hover,
.tip-item:hover {
  box-shadow: 0 8px 32px rgba(194,161,91,0.15), 0 2px 8px var(--shadow);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.01);
}

/* =========================================================
   Header, Main Nav, Mobile Menu
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 16px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
header .container {
  min-height: var(--header-height);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  transition: filter 0.2s;
}
.logo:hover img {
  filter: drop-shadow(0 2px 10px var(--gold));
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding: 8px 2px;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}
.cta-header {
  margin-left: 20px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-dark);
  display: none;
  margin-left: auto;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: var(--gold);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 0 24px rgba(33,38,57,0.14);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.9,0,.2,1);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--gold-dark);
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--primary); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-dark);
  padding: 12px 0;
  border-radius: 6px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--gold);
}

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


/* =========================================================
   Button Styles & Micro-interactions
   ========================================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px 36px;
  transition: background 0.23s, color 0.23s, box-shadow 0.22s, border 0.13s;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  margin-top: 8px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px var(--shadow);
  border: 2px solid var(--gold);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(194,161,91,0.18);
  border: 2px solid var(--primary-dark);
  text-decoration: none;
}
.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 12px rgba(37,84,120,0.11);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--gold-dark);
}

/* Subheadline for Hero */
.subheadline {
  color: var(--gold);
  font-size: 1.27rem;
  font-family: var(--font-display);
  margin-bottom: 22px;
}

/* =========================================================
   Flexbox-based Content/Special Sections (No grid, column props)
   ========================================================= */
/* Features (Index) */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.features .feature-grid li {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 18px 18px 18px;
  flex: 1 1 235px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.2s, border 0.18s;
}
.features .feature-grid li:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(194,161,91,0.18);
}
.features .feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 7px var(--gold));
}
.features .feature-grid h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}
.features .feature-grid p {
  color: var(--grey-700);
}

/* Services Preview (Index) */
.services-preview .service-list-short {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.services-preview .service-card {
  flex: 1 1 275px;
  min-width: 220px;
  max-width: 340px;
  align-items: flex-start;
  gap: 12px;
  background: var(--accent);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(194,161,91,0.11);
  position: relative;
}
.services-preview .service-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 8px var(--primary));
}
.services-preview .btn-secondary {
  align-self: flex-end;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .features .feature-grid,
  .services-preview .service-list-short {
    flex-direction: column;
    gap: 20px;
  }
}

/* Services Page - Services Grid */
.services .service-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.services .service-block {
  flex: 1 1 320px;
  min-width: 230px;
  max-width: 355px;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid var(--gold);
  background: var(--card-bg);
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(37,84,120,0.1);
  transition: border 0.15s, box-shadow 0.16s;
}
.services .service-block img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .services .service-details-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* Benefits */
.benefits .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.benefits .icon-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 12px;
}
.benefits .icon-summary img {
  height: 36px;
}

/* Testimonials */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--gold);
  color: var(--grey-900);
  box-shadow: 0 8px 28px rgba(37,84,120,0.08);
  margin-bottom: 20px;
  padding: 24px 18px 20px 18px;
  position: relative;
}
.testimonial-card .testimonial-stars {
  color: var(--gold-dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin-top: 9px;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* Tip List */
.tips-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tips-list .tip-item {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 310px;
  border: 1.5px solid var(--secondary);
  background: var(--card-bg);
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px var(--shadow);
}
.tips-list .tip-item img {
  height: 38px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .tips-list ul {
    flex-direction: column;
    gap: 18px;
  }
}

/* Team Bios */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.team-bios li {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 22px 18px 22px;
  box-shadow: 0 2px 9px var(--shadow);
  min-width: 210px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
.team-bios h4 {
  margin-bottom: 7px;
  color: var(--primary-dark);
}

/* Value List */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 6px;
}
.quality-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.quality-icons img {
  height: 34px;
}

/* Hours Table & Address */
.hours-address {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 16px;
}
.hours-table {
  min-width: 170px;
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 11px rgba(37,84,120,0.067);
}
.hours-table th, .hours-table td {
  padding: 10px 14px;
  text-align: left;
}
.address-block {
  padding: 12px 18px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 1.08rem;
}
@media (max-width: 900px) {
  .hours-address {
    flex-direction: column;
    gap: 18px;
  }
}

/* FAQ Page */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
  width: 100%;
}
.faq-item {
  background: var(--accent);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--secondary);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 18px 20px 14px 20px;
  transition: box-shadow 0.23s, border 0.2s;
  margin-bottom: 20px;
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.faq-item p {
  color: var(--grey-700);
}

.search-faq-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.search-faq-bar label {
  font-size: 1rem;
}
.search-faq-bar input {
  border: 1.5px solid var(--grey-100);
  background: #fff;
  color: var(--grey-900);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 240px;
  font-size: 1rem;
}

/* Content-grid/Flex Utility Classes */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Thank-You Section */
.thank-you-section .btn-primary {
  margin-top: 24px;
}

/* CTA Section */
.cta-section, .tips-cta, .faq-cta, .contact-cta {
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 40px 20px;
  box-shadow: 0 3px 26px rgba(37,84,120,0.13);
  text-align: center;
}
.cta-section h2,
.tips-cta h2, .contact-cta h2, .faq-cta h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta-section .btn-primary, .tips-cta .btn-primary, .faq-cta .btn-primary, .contact-cta .btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: #fff;
}
.cta-section .btn-primary:hover, .tips-cta .btn-primary:hover, .faq-cta .btn-primary:hover, .contact-cta .btn-primary:hover {
  background: #fff;
  color: var(--primary);
  border-color: var(--gold-dark);
}


/* =========================================================
   Footer Styles
   ========================================================= */
footer {
  background: #fff;
  border-top: 1px solid #ededed;
  padding: 34px 0 16px 0;
}
footer .container {
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--primary-dark);
  transition: color 0.18s;
  font-weight: 600;
}
.footer-nav a:hover {
  color: var(--gold-dark);
}
.footer-info {
  color: var(--grey-500);
  font-size: 0.95rem;
  text-align: center;
}

/* =========================================================
   Cookie Consent Banner & Modal
   ========================================================= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  width: 100vw;
  background: #fff;
  border-top: 2px solid var(--gold-dark);
  box-shadow: 0 -4px 20px rgba(37,84,120,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px 22px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s, transform 0.22s;
  gap: 24px;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-text {
  color: var(--primary-dark);
  max-width: 620px;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn, .cookie-btn-primary {
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  border: none;
  padding: 10px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border 0.13s;
}
.cookie-btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  margin-right: 6px;
}
.cookie-btn-primary:hover {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--gold);
}
.cookie-btn {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary-dark);
}
.cookie-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 12px 14px 12px;
  }
  .cookie-btns {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Cookie Modal Popup */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 240;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 0;
}
#cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
#cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 60px rgba(37,84,120,0.14);
  min-width: 330px;
  max-width: 95vw;
  padding: 36px 36px 28px 36px;
  margin: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalShow 0.35s cubic-bezier(0.8, 0, 0.4, 1);
}
@keyframes cookieModalShow {
  0% { transform: scale(0.87) translateY(40px); opacity: 0; }
  100% {transform: none; opacity: 1; }
}
#cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 6px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
#cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: var(--grey-100);
  border: 1.2px solid var(--secondary);
  position: relative;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.14s;
}
#cookie-modal .cookie-toggle[data-enabled="true"] {
  background: var(--gold);
  border-color: var(--gold-dark);
}
#cookie-modal .cookie-toggle .toggle-dot {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px var(--shadow);
  transition: left 0.16s cubic-bezier(0.7,0,.3,1);
}
#cookie-modal .cookie-toggle[data-enabled="true"] .toggle-dot {
  left: 20px;
  background: #fffbe4;
}
#cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
  justify-content: flex-end;
}
#cookie-modal .cookie-btn-primary {
  min-width: 110px;
}
#cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color 0.16s;
}
#cookie-modal-close:hover { color: var(--gold-dark); }

@media (max-width: 480px) {
  #cookie-modal {
    min-width: 0;
    padding: 22px 6vw 20px 6vw;
  }
}

/* Cookie modal accessibility: prevent page scroll when open */
body.cookie-modal-open {
  overflow: hidden;
}

/* =========================================================
   Responsive Utility Tweaks
   ========================================================= */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  header .container { padding: 0 10px; }
  .card, .service-card, .service-block, .testimonial-card, .tip-item {
    padding: 18px 10px;
    min-width: 0;
  }
  .testimonials .testimonial-slider, .services-preview .service-list-short, .features .feature-grid, .services .service-details-grid, .tips-list ul {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.08rem; }
  .btn-primary, .btn-secondary {
    font-size: 0.98rem;
    padding: 12px 16px;
    min-width: 110px;
  }
}

/* =========================================================
   Gold Accents & Refined Details
   ========================================================= */
hr {
  border: none;
  border-top: 1.5px solid var(--gold);
  margin: 34px 0;
}

/* Micro-animations: subtle fade in on section load */
.section, .hero, .hero-tips, .features, .services-preview, .testimonials, .cta-section, .about, .team, .values, .services, .benefits, .tips-list, .faqs, .faq-cta, .thank-you-section, .privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use {
  opacity: 0;
  animation: fadeInSection 0.8s cubic-bezier(0.7, 0, 0.3, 1) 0.13s forwards;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* Decorative gold underline for h2 */
h2 {
  position: relative;
  padding-bottom: 7px;
}
h2:after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius:2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* Accessible link focus */
a:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   Misc fix: Remove last margin-bottom on cards & sections
   ========================================================= */
.card-container > *:last-child,
.feature-grid > *:last-child,
.service-list-short > *:last-child,
.services .service-details-grid > *:last-child,
.tips-list ul > *:last-child,
.testimonials .testimonial-slider > *:last-child,
.team-bios > *:last-child,
.faq-accordion-list > *:last-child {
  margin-bottom: 0 !important;
}
.section:last-child,
.hero:last-child,
.hero-tips:last-child {
  margin-bottom: 0;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
