/* ===================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7FA;
  color: #222B3A;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  border-radius: 6px;
}
a {
  color: #234168;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E0A800;
  text-decoration: underline;
}
/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* ===================
   TYPOGRAPHY
   =================== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #234168;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  color: #476087;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 22px;
}
p {
  margin-bottom: 16px;
  color: #333848;
  font-size: 1rem;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
small {
  color: #8B99AB;
  font-size: 0.93em;
}

/* ===================
   GLOBAL SPACING & LAYOUT
   =================== */
main {
  min-height: 70vh;
  margin-bottom: 40px;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 14px 0 rgba(23,36,50,0.06);
  position: relative;
}
@media (max-width: 992px) {
  .section, main > section {
    padding: 32px 8px;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .section, main > section {
    margin-bottom: 36px;
    padding: 20px 3px;
  }
}

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

.text-section {
  margin-bottom: 24px;
  font-size: 1.08rem;
}

/* ===============
   HEADER & NAV
   =============== */
header {
  background: #fff;
  border-bottom: 1px solid #E5E9F1;
  box-shadow: 0 2px 8px 0 rgba(35,65,104,0.06);
  z-index: 1001;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.logo img {
  height: 42px;
  width: auto;
  border-radius: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #234168;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 5px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E9EFF6;
  color: #E0A800;
}
.btn-primary {
  background: #234168;
  color: #fff !important;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px 0 rgba(35,65,104,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A3053;
  color: #E0A800 !important;
  box-shadow: 0 4px 16px 0 rgba(35,65,104,0.09);
  text-decoration: none;
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  background: #234168;
  color: #FFF;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* No gap property here because it's a button */
  transition: background 0.16s;
  z-index: 1602;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E0A800;
  color: #234168;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 41, 68, 0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.85,0,.15,1);
  z-index: 1600;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #FFF;
  border: none;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1701;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E0A800;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: #FFF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0A800;
  color: #234168;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 850px) {
  .main-nav .btn-primary {
    padding: 8px 15px;
    font-size: 1rem;
  }
  header .container {
    min-height: 58px;
    padding: 5px 0;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 801px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  min-height: 360px;
  background: linear-gradient(110deg, #234168 84%, #F5F7FA 100%);
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 20px 60px 20px;
  max-width: 740px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.hero .subtitle {
  color: #DBDFE9;
  margin-bottom: 28px;
}
.hero .cta-btn {
  background: #E0A800;
  color: #234168;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  border-radius: 36px;
  padding: 14px 38px;
  box-shadow: 0 2px 16px 0 rgba(35,65,104,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-block;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #ffcc3d;
  color: #1A3053;
  box-shadow: 0 6px 24px 0 rgba(35,65,104,0.11);
}


/* ===============
   FEATURES GRID (USP)
   =============== */
.features-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 20px;
  justify-content: start;
}
.feature-card {
  flex: 1 1 220px;
  background: #F5F7FA;
  border: 1px solid #E5E9F1;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(35,65,104,0.03);
  padding: 32px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-card img {
  height: 38px;
  width: 38px;
  margin-bottom: 7px;
  border-radius: 0;
}
.feature-card h3 {
  color: #234168;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: #42546E;
  margin-bottom: 0;
  font-size: 1.03rem;
}
.feature-card:hover {
  box-shadow: 0 6px 24px 0 rgba(35,65,104,0.12);
}

/* ===============
   SERVICE CARDS
   =============== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #E5E9F1;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(35,65,104,0.03);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow .18s;
}
.service-card h3 {
  font-size: 1.16rem;
  margin-bottom: 6px;
}
.service-card a {
  color: #234168;
  font-weight: 600;
  font-size: 1.01rem;
  margin-top: 6px;
  align-self: flex-start;
  transition: color .16s;
}
.service-card a:hover, .service-card a:focus {
  color: #E0A800;
  text-decoration: underline;
}
.service-card:hover {
  box-shadow: 0 6px 20px 0 rgba(35,65,104,0.12);
}

.mini-cta {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cta-btn-secondary {
  background: #fff;
  border: 1.5px solid #234168;
  color: #234168;
  padding: 10px 26px;
  border-radius: 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border .18s;
  box-shadow: 0 2px 10px 0 rgba(35,65,104,0.03);
  cursor: pointer;
  display: inline-block;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #234168;
  color: #fff;
  border-color: #E0A800;
}

/* ===============
   CTA BAND
   =============== */
.cta-band {
  background: #234168;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 48px 20px;
  box-shadow: 0 4px 20px 0 rgba(23,36,50,0.10);
}
.cta-band h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.cta-band p {
  color: #E3E8F0;
  margin-bottom: 26px;
  font-size: 1.1rem;
}
.cta-band .cta-btn {
  background: #E0A800;
  color: #234168;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 36px;
  box-shadow: 0 2px 12px 0 rgba(35,65,104,0.07);
  margin-bottom: 18px;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.cta-band .cta-btn:hover, .cta-band .cta-btn:focus {
  background: #ffcc3d;
  color: #234168;
}
.cta-band .phone-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  background: #fff;
  color: #234168;
  padding: 11px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 8px 0 rgba(35,65,104,.09);
  width: fit-content;
  font-weight: 600;
  font-size: 1.13rem;
}
.cta-band .phone-highlight img {
  height: 28px;
  width: 28px;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-btn img, .cta-btn-secondary img {
  height: 1.4em;
  width: auto;
  vertical-align: middle;
  margin-right: 7px;
  border-radius: 0;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 26px;
  background: #f7fafd;
  color: #234168;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,65,104,0.09);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 200px;
  position: relative;
  border: 1.5px solid #E1ECF6;
  transition: box-shadow 0.18s, border .16s;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #2e466b;
  font-size: 1rem;
}
.star-rating {
  color: #E0A800;
  font-size: 1.16rem;
  letter-spacing: 0.05em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #E0A800;
  box-shadow: 0 8px 26px 0 rgba(35,65,104,.18);
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #223D56;
  padding: 40px 0 24px 0;
  color: #fff;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #DBDFE9;
  font-size: 1.02rem;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E0A800;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  font-size: 0.97rem;
  color: #c8d5e6;
}
.footer-contact span {
  margin-bottom: 4px;
}

/* ===============
   CARDS and LISTS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(35,65,104,0.05);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Examples for .content-grid, .text-image-section etc in About and Services */
.leadership-team {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.services-list, .consultation-types, .vollmacht-types, .benefits, .unique-points {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.faq-item {
  flex: 1 1 220px;
  background: #F2F5F9;
  padding: 18px 18px 18px 22px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #222B3A;
  box-shadow: 0 1px 8px 0 rgba(35,65,104,0.03);
  border: 1.5px solid #E6ECF2;
  transition: border .16s;
}
.faq-item:hover {
  border: 1.5px solid #E0A800;
}
.step-by-step-guide, .required-documents, .process-overview, .checklist, .legal-information, .sample-documents, .notes-on-costs, .service-inclusions {
  margin-bottom: 20px;
}
.required-documents ul, .services-list ul, .vollmacht-types ul, .consultation-types ul, .sample-documents ul {
  list-style: disc inside;
}
.step-by-step-guide ol, .process-overview ol {
  list-style: decimal inside;
}

/* Table styles for pricing page */
.pricing-tables table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.pricing-tables th, .pricing-tables td {
  border: 1px solid #DEE7F2;
  padding: 13px 12px;
  text-align: left;
  font-size: 1.01rem;
}
.pricing-tables th {
  background: #234168;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
}
.pricing-tables tr:nth-child(even) td {
  background: #F6F8FA;
}

/* Map/Directions/Contact Cards */
.contact-info-section {
  display: flex;
  gap: 26px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.address-info, .phone-email, .opening-hours {
  background: #F5F7FA;
  border: 1px solid #E5E9F1;
  border-radius: 10px;
  padding: 18px 18px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px 0 rgba(35,65,104,0.03);
  margin-bottom: 20px;
}
.map-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.embedded-map-placeholder {
  background: #F2F7FA;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  min-width: 240px;
  flex: 1 1 260px;
  text-align: center;
}
.embedded-map-placeholder img {
  height: 54px;
  margin-bottom: 10px;
  border-radius: 0;
}
.directions, .parking-info {
  background: #fff;
  border: 1px solid #E5E9F1;
  border-radius: 10px;
  padding: 18px 16px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 200px;
}

/* Legal notes etc */
.legal-notes {
  margin-top: 12px;
}

/* Thank-you page */
.text-section strong {
  color: #234168;
}

/* ===================
   Cookie Consent Banner
   =================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #234168;
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 32px;
  font-size: 1.09rem;
  box-shadow: 0 -6px 28px 0 rgba(35,65,104,0.12);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.85,0,.15,1), opacity 0.24s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-text {
  max-width: 620px;
  font-size: 1.03rem;
  color: #E3E8F0;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 9px 28px;
  box-shadow: 0 2px 12px rgba(35,65,104,0.08);
  margin-bottom: 0;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.cookie-consent-banner .accept {
  background: #E0A800;
  color: #234168;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #ffcc3d;
  color: #234168;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #234168;
  border: 1.5px solid #234168;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  color: #fff;
  background: #2b4567;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #E0A800;
  border: 1.5px solid #E0A800;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #fff;
  color: #234168;
}

/* ===================
   Cookie Modal
   =================== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(35, 41, 68, 0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #234168;
  max-width: 460px;
  width: 94vw;
  padding: 36px 30px 30px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(35,65,104,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #234168;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #222B3A;
}
.cookie-modal input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #E0A800;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-modal .category-description {
  color: #466084;
  font-size: 0.97rem;
}
.cookie-modal .category-essential {
  color: #8a8fa6;
  font-size: 0.96em;
  margin-left: 34px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: transparent;
  border: none;
  color: #234168;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.14s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #E0A800;
}
.cookie-modal button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  padding: 8px 23px;
  font-weight: 600;
  font-size: 1rem;
  background: #234168;
  color: #fff;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal button.accept {
  background: #E0A800;
  color: #234168;
}
.cookie-modal button.accept:hover, .cookie-modal button.accept:focus {
  background: #ffcc3d;
  color: #234168;
}
.cookie-modal button.reject {
  background: #fff;
  color: #234168;
  border: 1.5px solid #234168;
}
.cookie-modal button.reject:hover, .cookie-modal button.reject:focus {
  background: #234168;
  color: #fff;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 992px) {
  .features-grid {
    gap: 18px;
  }
  .service-cards,
  .testimonial-slider,
  .map-section {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .features-grid,
  .service-cards,
  .testimonial-slider,
  .faq-list,
  .contact-info-section,
  .map-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
  }
  .step-by-step-guide ol,
  .process-overview ol {
    margin-left: 1.1em;
  }
  .cta-band {
    padding: 27px 8px;
    border-radius: 7px;
  }
  .section, main > section {
    padding: 18px 2px;
  }
  header .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 10px;
    font-size: 1rem;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 9px;
  }
  .cookie-modal {
    padding: 18px 3vw 14px 3vw;
    border-radius: 7px;
  }
}
@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .cta-band h2 {
    font-size: 1.14rem;
    margin-bottom: 8px;
  }
  .cta-band .phone-highlight {
    font-size: 0.98rem;
    padding: 6px 8px;
  }
  .service-card, .feature-card, .testimonial-card {
    padding: 15px 9px;
    border-radius: 7px;
    min-width: unset;
    font-size: 1rem;
  }
  .step-by-step-guide, .required-documents, .process-overview, .checklist, .sample-documents, .service-inclusions, .notes-on-costs {
    margin-bottom: 8px;
  }
}

/* ===================
   MISC/EFFECTS
   =================== */
::-webkit-scrollbar {
  width: 9px;
  background: #E9EFF6;
}
::-webkit-scrollbar-thumb {
  background: #234168;
  border-radius: 6px;
}
::selection {
  background: #E0A80066;
  color: #234168;
}
button, .btn-primary, .cta-btn, .cta-btn-secondary {
  cursor: pointer;
  outline: none;
}
button:focus-visible {
  box-shadow: 0 0 0 2px #FFE87A66;
}

/* Card microinteraction */
.card, .testimonial-card, .feature-card, .service-card {
  transition: box-shadow 0.22s, border-color 0.18s;
}
.card:hover, .testimonial-card:hover, .feature-card:hover, .service-card:hover {
  box-shadow: 0 6px 24px 0 rgba(35,65,104,0.12);
  border-color: #E0A800;
}

/* Table scroll for mobile */
@media (max-width: 670px) {
  .pricing-tables table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Hide outlines for mouse users */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) .btn-primary:focus,
body:not(.user-is-tabbing) a:focus {
  outline: none;
  box-shadow: none;
}

/* ===================
   PRINT FRIENDLY
   =================== */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
}
