/* ==========================================================================
   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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video { 
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; }
body { 
  line-height: 1.6; 
  font-family: 'Open Sans', Arial, sans-serif;
  background: #faf9f7;
  color: #1B2E4B;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1B2E4B; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #F4B400; outline-offset: 2px; }

/* ==========================================================================
   BRAND CSS VARIABLES
   ========================================================================== */
:root {
  --color-primary: #1B2E4B;
  --color-secondary: #F4B400;
  --color-accent: #FFFFFF;
  --color-bg: #faf9f7;
  --color-card: #FFFFFF;
  --color-text: #1B2E4B;
  --color-link-hover: #F4B400;
  --color-hero: #e1f5fd;
  --color-section-alt: #ffecd1;
  --color-shadow: rgba(27,46,75,0.10);
  --color-dark-text: #19243a;
  --color-border: #e8e6e4;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 0.5px;
  font-weight: 800;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-shadow: 2px 4px 0 #ffe082, 0 2px 12px var(--color-shadow);
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #b2ebf2;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4 { font-size: 1.1rem; }

p, ul, ol, li, dl, dt, dd, blockquote {
  font-family: var(--font-body);
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: #58392b;
  background: #fff7e6;
  border-left: 4px solid var(--color-secondary);
  padding: 18px 24px;
  margin-bottom: 8px;
  border-radius: 16px 4px 16px 4px;
  font-size: 1.125rem;
  box-shadow: 0 1px 10px 0 var(--color-shadow);
}
ul, ol { padding-left: 20px; margin-bottom: 16px; }
li {
  margin-bottom: 8px;
  list-style: disc inside;
}
dl dt { font-weight: bold; margin-top: 10px; }
dl dd { margin-left: 0; margin-bottom: 10px;}

strong, b { font-weight: bold; color: #14223a; }
.text-section strong, .content-wrapper strong { color: var(--color-secondary); }

/* Artistic display headings */
h1, h2 {
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  background-clip: padding-box;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 7px;
  width: 72px;
  background: var(--color-secondary);
  border-radius: 3px 34px 6px 28px;
  margin: 12px 0 0 0;
  opacity: 0.15;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.06rem; }
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  background: none; /* Transparent by default */
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
  background: var(--color-card);
  box-shadow: 0 4px 20px 0 var(--color-shadow);
  transition: box-shadow 0.2s;
}
.section:nth-child(even) {
  background: var(--color-section-alt);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 20px 10px;
  }
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative; /* For unique artistic decoration */
  border-radius: 24px 8px 20px 12px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  background: var(--color-card);
  padding: 28px 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.26s, transform 0.26s;
  border: 2px solid var(--color-border);
}
.card:hover {
  box-shadow: 0 8px 32px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
  border-color: var(--color-secondary);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-card);
  gap: 15px;
  padding: 24px 16px;
  border-radius: 18px 8px 16px 8px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  border-left: 5px solid var(--color-secondary);
  min-width: 210px;
  flex: 1 1 265px;
  transition: border-color 0.2s, box-shadow 0.22s, transform 0.22s;
}
.feature-item:hover {
  border-color: #ff9800;
  box-shadow: 0 8px 32px 0 var(--color-shadow);
  transform: translateY(-6px) scale(1.01) rotate(0.3deg);
}
.feature-item img {
  height: 36px;
  width: 36px;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

/* Artistic placeholder for map */
.map-placeholder {
  background: repeating-linear-gradient(-45deg, #e3edf8, #e3edf8 10px, #f4b40010 12px, #f4b40010 18px);
  border: 2px dashed var(--color-secondary);
  border-radius: 12px 40px 12px 40px;
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0;
  border-bottom: 4px solid var(--color-secondary);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 18px 16px 12px 16px;
}
header img {
  height: 48px; max-width: 180px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: var(--font-display);
  flex-grow: 1;
}
header nav a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.21s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary);
}
header .cta-primary {
  margin-left: auto;
}

@media (max-width: 1020px) {
  header .container { flex-wrap: wrap; }
  header nav { gap: 14px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 6px 10px 6px;
  }
  header nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
}

/* ==========================================================================
   MOBILE MENU (BURGER MENU)
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  appearance: none; border: none; background: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: var(--color-accent);
  margin-left: auto;
  z-index: 33;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: #222e54; }

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 92vw;
  max-width: 360px;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 80;
  box-shadow: -8px 0 24px 0 rgba(27,46,75,0.22);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.65,.01,.83,.53);
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(.44,1.12,.54,1.07);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 4px 14px 6px 4px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { background: #19243a; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 0 10px 4px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
  position: relative;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-section-alt);
  color: var(--color-primary);
}

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

/* Overlay below mobile menu to lock scroll /
.mobile-menu.open::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,46,75,0.17);
  z-index: -1;
}

/* ==========================================================================
   CTA BUTTONS
   ========================================================================== */
.cta-primary {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 32px 6px 22px 18px;
  box-shadow: 0 1px 12px 0 var(--color-shadow);
  letter-spacing: 1.2px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ff9800;
  color: var(--color-accent);
  box-shadow: 0 4px 20px 2px #f4b40040;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-secondary);
  border: 2.5px solid var(--color-secondary);
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 14px 24px 13px 32px;
  margin-top: 6px;
  margin-bottom: 6px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, border 0.18s, transform 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: #ff9800;
  transform: translateY(-2px) scale(1.03) rotate(1.5deg);
}

/* ==========================================================================
   TESTIMONIALS & BLOCKS
   ========================================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-top: 14px;
  background: #fffbe6;
  border-radius: 20px 10px 22px 17px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  border-left: 5px solid var(--color-secondary);
  border-bottom: 3px solid #ff96002b;
}
.testimonial-card blockquote {
  color: #2e2e21;
  background: transparent;
  border-left: none;
  font-size: 1.13rem;
  margin: 0;
  padding: 0;
  text-shadow: 0 1px 0 #f7d47222;
}
.client-name {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
}
.testimonial-card img {
  height: 21px; width: 21px;
  display: inline-block;
  margin-right: 1px;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 13px; gap: 12px; font-size: 0.99rem; }
  .client-name { font-size: 0.93rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding-top: 40px;
  padding-bottom: 22px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.13s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.footer-brand {
  display: flex;
  flex-direction: row; align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.01rem;
  letter-spacing: 0.6px;
}
.footer-brand img {
  width: 38px; height: 38px;
}
@media (max-width: 650px) {
  footer nav { gap: 13px; font-size: 0.93rem; }
  .footer-brand { flex-direction: column; gap: 4px; }
}

/* ==========================================================================
   MISCELLANEOUS BLOCKS & LISTS
   ========================================================================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 14px;
}
.service-list li {
  background: #f9fafb;
  padding: 21px 18px;
  border-radius: 10px 30px 15px 25px;
  box-shadow: 0 1px 13px 0 var(--color-shadow);
  border-left: 5px solid var(--color-secondary);
  font-size: 1.09rem;
  margin-bottom: 0;
  list-style: none;
  position: relative;
}
.service-list strong {
  color: #2b3c65;
  font-weight: 700;
  font-size: 1rem;
}

ol { counter-reset: steps; }
ol > li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 8px;
}
ol > li:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0; top: 2px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  width: 24px; height: 24px;
  border-radius: 10px 7px 9px 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
}

@media (max-width: 700px) {
  .service-list li { font-size: 0.99rem; }
  ol > li { padding-left: 30px; font-size: 0.97rem; }
  ol > li:before { font-size: 0.95rem; width: 20px; height: 20px; }
}

/* Light up links in privacy/legal/cookie blocks */
.text-section a { color: var(--color-secondary); text-decoration: underline; font-weight: 600; transition: color 0.18s; }
.text-section a:hover, .text-section a:focus { color: #ff9800; }

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #151932f6;
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  z-index: 120;
  box-shadow: 0 -3px 22px 0 #11131e36;
  font-size: 1.01rem;
  border-radius: 20px 20px 0 0;
  animation: bannerIn 0.36s ease;
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0.5; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 60%;
  margin-bottom: 0;
  font-family: var(--font-body);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 10px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 16px 7px 17px 8px;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 0.5px 6px 0 #f4b40021;
  transition: background 0.14s, color 0.15s, box-shadow 0.18s, transform 0.17s;
}
.cookie-btn:hover, .cookie-settings-btn:hover,
.cookie-btn:focus, .cookie-settings-btn:focus {
  background: #ff9800;
  color: #fff;
  outline: none;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.reject {
  background: #e9515b;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #ba242d; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
    font-size: 0.98rem;
    gap: 13px;
  }
  .cookie-banner .cookie-btn-group { gap: 7px; padding-bottom: 1px; }
}

/* Cookie modal overlay/popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  background: rgba(27,46,75,0.21);
  width: 100vw; height: 100vh;
  z-index: 130;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #ffffff;
  border-radius: 24px 16px 11px 32px;
  box-shadow: 0 8px 40px 0 #1b2e4b25;
  padding: 36px 28px 30px 28px;
  min-width: 315px; max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--font-body);
  color: #1B2E4B;
  position: relative;
  animation: popIn 0.22s cubic-bezier(.8,-0.05,.64,1.31);
}
@keyframes popIn {
  from { transform: scale(0.93); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.44rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-category label {
  margin-left: 10px;
  margin-right: 12px;
  font-weight: 600;
  color: #1b2e4b;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 32px;
  background: #e2e3e6;
  border: 1.5px solid #e2e3e6;
  appearance: none;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  transition: background 0.19s, border 0.14s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2.5px;
  box-shadow: 0 1px 8px 0 #b6ad7833;
  transition: left 0.19s cubic-bezier(.82,.11,.85,.95);
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #fffde7;
}
.cookie-modal .close-modal {
  position: absolute; top: 16px; right: 22px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #19243a;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 7px;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #e8e6e469;
}
.cookie-modal .modal-btn-group {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  margin: 0 1px 0 0;
  font-size: 1rem;
}

/* Essential cookies always enabled */
.cookie-category.essential label {
  color: #bdb399 !important;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: 0.65;
}

@media (max-width: 450px) {
  .cookie-modal { padding: 20px 8px 14px 8px; min-width: 0; max-width: 100vw; }
  .cookie-modal h2 { font-size: 1.11rem; }
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1020px) {
  .container { max-width: 97vw; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; }
  .footer-brand img { width: 26px; height: 26px; }
}

/* ==========================================================================
   ARTISTIC + CREATIVE HIGHLIGHTS
   ========================================================================== */
/* Colorful accents, brushlike shapes, and playful drop shadows */
section {
  position: relative;
  overflow-x: clip;
}
section::before {
  content: '';
  position: absolute;
  left: -40px; top: 20px;
  width: 60px; height: 60px;
  z-index: 0;
  background: #F4B40022;
  border-radius: 44px 8px 36px 19px;
}
section::after {
  content: '';
  position: absolute;
  right: -40px; bottom: 14px;
  width: 48px; height: 48px;
  background: #0fb7f079;
  border-radius: 10px 33px 21px 35px;
  z-index: 0;
}
.section > .container, .content-wrapper, .feature-grid { position: relative; z-index: 1; }

/* Distinct brush for hero section on homepage */
main > section:first-child {
  background: linear-gradient(90deg, #ffe082 50%, #e1f5fd 100%);
  box-shadow: 0 8px 32px 0 #e1f5fd90;
  border-radius: 42px 11px 33px 42px;
  overflow: hidden;
  min-height: 275px;
}
main > section:first-child::before {
  content: '';
  position: absolute;
  left: -60px; top: -32px;
  width: 120px; height: 100px;
  background: #F4B4003a;
  border-radius: 88px 24px 36px 25px;
  z-index: 0;
  opacity: 0.64;
}
main > section:first-child .content-wrapper {
  z-index: 2;
  position: relative;
}

/* Artistic highlight on CTA at bottom of home/thank-you */
main section:last-child {
  background: linear-gradient(91deg, #f4b4000b 54%, #e1f5fd70 100%);
  border-radius: 32px 40px 44px 15px;
}

/* ==========================================================================
   ACCESSIBILITY & MISC
   ========================================================================== */
:focus-visible {
  outline: 3px solid #F4B400;
  outline-offset: 3px;
}

/* Hide visually for decorative elements with aria-label (like placeholder map) */
[aria-label*="Map location placeholder"]::before { display: none; }

/* Prevent unintentional content overlap */
.section, .feature-item, .testimonial-card, .card, .service-list li {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section, .feature-item, .testimonial-card, .card, .service-list li {
    margin-bottom: 15px;
  }
}

/* Remove inner padding from .content-wrapper for privacy/legal blocks */
.content-wrapper .text-section, .content-wrapper > .text-section {
  padding: 0;
}

/* ==========================================================================
   PRINT OVERRIDE
   ========================================================================== */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { background: white !important; box-shadow: none !important; }
}
