/* RESET & BASE STYLES ------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F4F0;
  color: #28404A;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: #28404A;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover,
a:focus {
  color: #B1936B;
}
img {
  max-width: 100%;
  border-radius: 6px;
}
ul, ol {
  padding-left: 1.5em;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
strong { font-weight: 700; color: #28404A; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #28404A;
  font-weight: 800;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

/* TYPOGRAPHY SCALE */
p, ul, ol, li, span, label { font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.4rem; }
  p, ul, ol, li, span { font-size: 1.08rem; }
}

/* CONTAINERS & LAYOUTS --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(40,64,74,0.06), 0 1.5px 6px rgba(177,147,107, 0.10);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(40,64,74,0.12), 0 2px 8px rgba(177,147,107,0.18);
  transform: translateY(-2px) scale(1.015);
}
.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;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(40,64,74,0.08), 0 1px 5px rgba(177,147,107,0.10);
  min-width: 260px;
  max-width: 700px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(40,64,74,0.15), 0 3px 9px rgba(177,147,107,0.23);
  transform: translateY(-1.5px) scale(1.01);
}
.testimonial-card blockquote {
  color: #28404A;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.13rem;
  letter-spacing: -0.3px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 8px 0;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #B1936B;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.15px;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 2px 11px rgba(40,64,74,0.08);
  margin-bottom: 20px;
}

/* SPACING AND FLEX GAPS -------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child { margin-bottom: 0; }
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > * + * {
  margin-top: 0;
}

/* HERO ------------------------------------------------------------ */
.hero-section {
  background: #28404A;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 30px rgba(40,64,74,0.09), 0 2px 6px rgba(177,147,107, 0.09);
  padding: 64px 0 36px 0;
  margin-bottom: 56px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-section p {
  color: #F5F4F0;
  font-size: 1.18rem;
  margin-bottom: 26px;
}
.hero-section .btn-primary {
  background: #B1936B;
  color: #fff;
  border-radius: 8px;
  font-size: 1.13rem;
  box-shadow: 0 3px 16px rgba(177,147,107,0.13);
}

/* HEADER & NAVIGATION --------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 7px rgba(40,64,74,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
}
.logo img { height: 40px; display: block; }
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 8px 0;
  position: relative;
  color: #28404A;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B1936B;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  margin-left: 16px;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(40,64,74,0.08);
}
.btn-primary {
  background: #B1936B; color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A07C47; color: #fff;
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 6px 18px rgba(177,147,107,0.16);
}
.btn-secondary {
  background: #fff; color: #B1936B;
  border: 2px solid #B1936B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B1936B; color: #fff;
  transform: translateY(-1.5px) scale(1.025);
}

/* HAMBURGER MENU -------------------------------------------------- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B1936B;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 8px;
  width: 48px; height: 48px;
  border: none;
  margin-left: 14px;
  transition: background 0.14s, color 0.14s, transform 0.1s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A07C47;
  color: #fff;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(40,64,74,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.87,0,0.13,1);
  padding-top: 32px;
  padding-bottom: 32px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 6px 26px 16px 0;
  font-size: 2rem;
  background: #fff;
  color: #28404A;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.14s, transform 0.13s;
  z-index: 2101;
  box-shadow: 0 2px 7px rgba(40,64,74,0.19);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B1936B;
  color: #fff;
  transform: scale(1.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 38px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  padding: 16px 0;
  transition: color 0.14s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B1936B;
  background: rgba(245,244,240,0.12);
}
/* Hide DESKTOP nav on mobile */
@media (max-width: 1000px) {
  nav.main-nav,
  .btn-primary { display: none !important; }
}
/* HIDE hamburger on desktop */
@media (min-width: 1001px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}


/* FEATURES SECTION ------------------------------------------------ */
.features-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 5px 18px rgba(40,64,74,0.06);
  padding: 48px 0;
}
.features-section ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  list-style: none;
}
.features-section li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #28404A;
  font-size: 1.05rem;
  background: #F5F4F0;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(177,147,107,0.06);
}
.features-section img {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #B1936B;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(40,64,74,0.08);
}

/* SERVICES PREVIEW/LIST -------------------------------------------- */
.services-preview, .services-section {
  background: #28404A;
  color: #fff;
  border-radius: 24px;
}
.services-preview h2, .services-section h2 {
  color: #fff;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.services-list > div {
  background: #fff;
  color: #28404A;
  border-radius: 15px;
  box-shadow: 0 3px 18px rgba(40,64,74,0.08);
  padding: 26px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  min-width: 230px;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.13s;
}
.services-list > div:hover {
  box-shadow: 0 8px 32px rgba(177,147,107,0.15);
  transform: translateY(-2px) scale(1.02);
}
.services-list h3 {
  color: #B1936B;
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 800;
}
.services-list p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #28404A;
}
.btn-secondary {
  margin-top: 18px;
}

.services-section ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
  list-style: none;
}
.services-section li {
  background: #fff;
  color: #28404A;
  border-radius: 13px;
  box-shadow: 0 1.5px 9px rgba(177,147,107,0.08);
  padding: 23px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  margin-bottom: 0;
}
.services-section h3 {
  color: #B1936B;
  margin-bottom: 10px;
}
.services-section p strong {
  color: #B1936B;
}


/* PROCESS SECTION (Ablauf/Leistungen) ------------------------------- */
.process-section ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: decimal;
  margin: 20px 0 0 22px;
}
.process-section li {
  background: #F5F4F0;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #28404A;
  margin-bottom: 0;
  font-size: 1.08rem;
}
.process-section p {
  margin-top: 20px;
  color: #28404A;
  font-size: 1rem;
}

/* FAQ SECTION ------------------------------------------------------ */
.faq-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(40,64,74,0.07);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.faq-accordion h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: bold;
  color: #B1936B;
  background: #F5F4F0;
  border-radius: 7px;
  padding: 9px 15px;
  cursor: pointer;
  transition: background 0.17s;
}
.faq-accordion h3:hover {
  background: #E9E3D2;
}
.faq-accordion p {
  font-size: 1.03rem;
  color: #28404A;
  margin-left: 12px;
  margin-bottom: 4px;
  background: #fff;
  border-left: 3px solid #B1936B;
  padding: 8px 15px;
  border-radius: 0 7px 7px 0;
}
.faq-prompt {
  margin-top: 35px;
  padding: 18px 0;
  background: #F5F4F0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.faq-prompt a {
  margin-top: 6px;
}


/* CTA SECTION ------------------------------------------------------ */
.cta-section {
  background: #B1936B;
  color: #fff;
  border-radius: 20px;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 4px 14px rgba(40,64,74,0.10);
  margin-bottom: 0;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .btn-primary {
  background: #fff;
  color: #B1936B;
  font-weight: bold;
  padding: 16px 36px;
  margin-top: 26px;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #F5F4F0;
  color: #B1936B;
}

/* CONTACT SECTION -------------------------------------------------- */
.contact-section .address-details,
.contact-section .contact-email,
.contact-section .opening-hours,
.contact-section .contact-phone {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(177,147,107,0.07);
  padding: 11px 19px;
  margin-bottom: 17px;
  color: #28404A;
  font-size: 1.04rem;
}

.contact-section a.btn-primary {
  margin-top: 22px;
  font-size: 1.02rem;
}
.map-section .map-placeholder {
  background: #F5F4F0;
  border-radius: 11px;
  color: #28404A;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 24px 18px;
  font-size: 1.06rem;
  margin-top: 20px;
}

.confirmation-section {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 15px rgba(40,64,74,0.09);
  text-align: center;
  color: #28404A;
}
.confirmation-section a.btn-primary {
  margin-top: 32px;
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: #28404A;
  color: #fff;
  padding: 46px 0 22px 0;
  margin-top: 40px;
  box-shadow: 0 -3px 14px rgba(40,64,74,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 4px;
  letter-spacing: 1.1px;
  border-radius: 4px;
  transition: background 0.12s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #B1936B;
  color: #fff !important;
}
.footer-contact {
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.45;
}
footer span {
  color: #B1936B;
  font-size: 0.98rem;
}


/* PRIVACY, DSGVO, TERMS, COOKIES SECTIONS ------------------------- */
.privacy-section, .dsgvo-section, .terms-section, .cookie-section {
  background: #fff;
  color: #28404A;
  border-radius: 20px;
  box-shadow: 0 1.5px 12px rgba(40,64,74,0.11);
  padding: 38px 20px;
  margin: 50px 0;
}
.privacy-section a, .dsgvo-section a, .terms-section a, .cookie-section a {
  color: #B1936B;
  text-decoration: underline;
  font-weight: bold;
}


/* MOBILE FIRST, MEDIA QUERIES ------------------------------------- */
@media (max-width: 820px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 28px 0;
    margin-bottom: 32px;
  }
  .hero-section {
    padding: 52px 0 24px 0;
  }
  .features-section, .services-preview, .services-section, .cta-section {
    border-radius: 11px;
    padding: 26px 0;
  }
  .privacy-section, .dsgvo-section, .terms-section, .cookie-section {
    padding: 26px 8px;
    margin: 32px 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .services-list, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 18px 14px;
    min-width: 0;
  }
  .main-nav {
    display: none !important;
  }
  .logo img { height: 33px; }
}

@media (max-width: 540px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.14rem; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.97rem; }
  .footer-logo img { height: 32px; }
}


/* SHADOWS & EFFECTS ----------------------------------------------- */
.card, .feature-item, .testimonial-card, .services-list > div {
  box-shadow: 0 2px 10px rgba(40,64,74,0.09), 0 1.5px 6px rgba(177,147,107, 0.05);
}
/* Decorative geometric elements (if any - can be added with ::before/::after if defined in HTML) */

/* MICRO-INTERACTIONS & ANIMATIONS -------------------------------- */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.15s;
}
.card, .services-list > div, .feature-item, .testimonial-card {
  transition: box-shadow 0.22s cubic-bezier(0.6,0.2,0.4,1), transform 0.16s;
}

/* ACCESSIBILITY --------------------------------------------------- */
a:focus, button:focus {
  outline: 2px solid #B1936B;
  outline-offset: 2px;
  z-index: 2;
}

/* COOKIE CONSENT BANNER ------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #28404A;
  color: #fff;
  padding: 18px 16px;
  z-index: 4000;
  box-shadow: 0 -3px 18px rgba(40,64,74,0.18);
  gap: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: cookieSlideUp 0.45s cubic-bezier(0.77,0,0.18,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0 18px 0 0;
  font-size: 1rem;
  color: #fff;
  flex: none;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 7px;
  margin-right: 8px;
  border: none;
  color: #fff;
  background: #B1936B;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
  box-shadow: 0 1px 5px rgba(177,147,107,0.15);
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #B1936B;
  border: 1.5px solid #B1936B;
  font-weight: bold;
}
.cookie-btn.cookie-settings {
  background: #28404A;
  color: #B1936B;
  border: 2px solid #B1936B;
  font-weight: 700;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A07C47;
  color: #fff;
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #B1936B;
  color: #fff;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #fff;
  color: #28404A;
}

/* COOKIE SETTINGS MODAL ------------------------------------------- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(40,64,74,0.75);
  z-index: 4100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  color: #28404A;
  border-radius: 13px;
  box-shadow: 0 6px 44px rgba(40,64,74,0.21);
  max-width: 420px;
  padding: 36px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.34s cubic-bezier(0.72,0,0.22,1);
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(70px) scale(0.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: bold;
  color: #B1936B;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5F4F0;
  border-radius: 7px;
  padding: 9px 13px;
  margin-bottom: 6px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: #28404A;
  cursor: pointer;
  font-weight: 700;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.12s;
  margin-left: auto;
}
.cookie-toggle:checked {
  background: #B1936B;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.14s cubic-bezier(0.8,0,0.36,1);
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 13px;
  right: 15px;
  color: #B1936B;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-close:hover {
  color: #28404A;
}
.cookie-category input[disabled],
.cookie-category input[readonly] {
  opacity: 0.5;
  pointer-events: none;
}

/* GEOMETRIC ELEMENTS (Brand Accent Shapes) ------------------------ */
/* Insert geometric decorations here if HTML supports ::before/::after -- none in provided HTML */

/* OVERRIDES & LAST FIXES ------------------------------------------ */
@media (min-width: 1001px) {
  header .container { gap: 30px; }
}

@media (min-width: 900px) {
  .services-list {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }
  .services-list > div {
    min-width: 260px;
    flex: 1 1 220px;
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  .content-wrapper {
    gap: 38px;
  }
}

/* Hide banner/modal when .hide or .cookie-banner.hide is added (handled via JS) */
.cookie-banner.hide { display: none !important; }
.cookie-modal-overlay.hide { display: none !important; }


/*-- END OF STYLE.CSS --*/
