/* 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,
main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}

html {
  height: 100%;
  font-size: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F9;
  color: #23334D;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23334D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B69C6D;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23334D;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
}
p,
li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #23334D;
}
strong {
  font-weight: 600;
}

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

/* BRAND COLORS -------------------------------------------------------- */
:root {
  --primary: #23334D;
  --secondary: #B69C6D;
  --accent: #F6F7F9;
  --card-bg: #fff;
  --text: #23334D;
  --border: #E1E5EA;
  --focus: #B69C6D;
}


/* CONTAINER, SECTIONS, WRAPPERS --------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEXBOX PATTERNS ---------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(35,51,77,.06);
  padding: 28px 22px;
  flex: 1 1 320px;
  min-width: 260px;
}
.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: 12px;
  box-shadow: 0 2px 8px rgba(35,51,77,.09);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(35,51,77,.05);
  padding: 20px 14px 14px 14px;
  margin-bottom: 20px;
  min-width: 230px;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .feature-grid,
  .team-members,
  .step-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* HEADER & NAVIGATION ------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 7px rgba(35,51,77,.05);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav > a img {
  height: 38px;
  margin-right: 32px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 1rem;
  color: #23334D;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #F6F7F9;
  color: #B69C6D;
}
.btn-primary {
  background: var(--primary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 28px;
  display: inline-block;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(35,51,77,.09);
  border: 2px solid var(--primary);
  line-height: 1.2;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(182,156,109,0.16);
}
.btn-secondary {
  background: #fff;
  color: var(--primary) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  border: 2px solid var(--primary);
  padding: 12px 24px;
  transition: background 0.17s, color 0.17s, border 0.17s, transform 0.16s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary);
  color: #fff !important;
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.02);
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: #F6F7F9;
  border: none;
  border-radius: 7px;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 6px 16px;
  margin-left: 16px;
  transition: background 0.16s, color 0.16s;
  z-index: 1101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eceef2;
  color: var(--secondary);
}

@media (max-width: 970px) {
  .main-nav ul { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU ----------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,51,77, 0.92);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.86,0,0.07,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: var(--primary);
  font-size: 1.7rem;
  border-radius: 6px;
  margin: 32px 28px 14px 0;
  padding: 3px 16px 4px 16px;
  box-shadow: 0 2px 7px rgba(35,51,77,0.09);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 42px 24px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  width: 100%;
  transition: color 0.17s;
  outline: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
}
@media (min-width: 971px) {
  .mobile-menu { display: none!important; }
}

/* HERO SECTIONS ------------------------------------------------------- */
.hero, .about-hero, .services-hero, .process-hero, .contact-hero, .faq-hero, .thank-you {
  background: var(--accent);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 8px rgba(35,51,77,0.05);
  margin-bottom: 60px;
  padding: 54px 0 54px 0;
}
.hero .content-wrapper, .about-hero .content-wrapper, .services-hero .content-wrapper, .contact-hero .content-wrapper, .faq-hero .content-wrapper, .process-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.hero h1, .about-hero h1, .services-hero h1, .contact-hero h1, .faq-hero h1, .process-hero h1, .thank-you h1 {
  color: var(--primary);
  font-size: 2.2rem;
}
.hero p, .about-hero p, .services-hero p, .contact-hero p, .faq-hero p, .process-hero p, .thank-you p {
  margin-bottom: 10px;
  color: var(--primary);
  max-width: 650px;
}
@media (max-width: 640px) {
  .hero, .about-hero, .services-hero, .contact-hero, .faq-hero, .process-hero, .thank-you {
    padding: 38px 0 38px 0;
    margin-bottom: 36px;
    border-radius: 0 0 10px 10px;
  }
  .hero .content-wrapper, .about-hero .content-wrapper, .services-hero .content-wrapper, .contact-hero .content-wrapper, .faq-hero .content-wrapper, .process-hero .content-wrapper, .thank-you .content-wrapper {
    align-items: stretch;
    text-align: left;
  }
}

/* FEATURES (Index) --------------------------------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 6px rgba(35,51,77,0.06);
  padding: 26px 20px 18px 20px;
  min-width: 235px;
  max-width: 330px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 4px 19px rgba(35,51,77,0.11);
  transform: translateY(-3px) scale(1.015);
}
.features .feature-grid img {
  height: 40px;
  width: 40px;
}
.features .feature-grid h3 { color: var(--primary); margin-top: 8px; }
.features .feature-grid p { color: #384860; margin-bottom: 0; }

/* ABOUT PREVIEW ------------------------------------------------------ */
.about-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(35,51,77,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.about-preview ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 9px 0;
  color: #384860;
}
.about-preview li {
  position: relative;
  padding-left: 20px;
}
.about-preview li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 6px;
}

/* CALL TO ACTION / CTA ----------------------------------------------- */
.cta {
  margin-bottom: 60px;
  padding: 46px 20px;
  background: var(--primary);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 4px 18px rgba(35,51,77,0.09);
}
.cta h2, .cta p { color: #fff; }
.cta .btn-primary { background: #fff; color: var(--primary) !important; border-color: #fff; margin-top: 16px; }
.cta .btn-primary:hover { background: var(--secondary); color: #fff!important; border-color: var(--secondary); }

/* CONTACT INFO (FOOTER & PAGE) --------------------------------------- */
.contact-info, .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info ul {
  margin-top: 20px;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0;
  color: #23334D;
  gap: 11px;
}
.contact-info li img { height: 20px; width: 20px; margin-right: 8px; }

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #e4e6ed;
  padding: 28px 0 18px 0;
  margin-top: 90px;
  box-shadow: 0 -2px 7px rgba(35,51,77,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--primary);
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-menu a:hover { color: var(--secondary); }
.brand-info {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .98rem;
  color: #435064;
}
.brand-info img {
  height: 24px;
  width: auto;
}

@media (max-width: 600px) {
  footer .container { flex-direction: column; gap: 11px; }
  .footer-menu { flex-direction: column; gap: 8px; }
  .brand-info { flex-direction: column; gap: 5px; text-align: center; }
}

/* ABOUT TEAM --------------------------------------------------------- */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
.team-members > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(35,51,77,0.04);
  padding: 24px 18px 18px 18px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 210px;
}
.team-members h3 { color: var(--primary); }

/* SERVICES LIST ------------------------------------------------------ */
.services-list .service-entry {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 7px rgba(35,51,77,0.05);
  margin-bottom: 22px;
  padding: 22px 18px 13px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.services-list .service-entry h3 { color: var(--primary); }
.services-list .price {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.05rem;
  align-self: flex-end;
}

/* STEPS / PROCESS ---------------------------------------------------- */
.steps .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 20px;
}
.steps .step-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 7px rgba(35,51,77,0.08);
  padding: 28px 20px 16px 20px;
  min-width: 205px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.13s;
}
.steps .step-grid > div:hover {
  box-shadow: 0 5px 20px rgba(35,51,77,0.12);
  transform: translateY(-2px) scale(1.02);
}
.steps .step-grid img {
  height: 38px;
  width: 38px;
}
.steps .step-grid h3 {
  margin-top: 10px;
  color: var(--primary);
}

/* PRICE TABLE -------------------------------------------------------- */
.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 9px rgba(35,51,77,0.05);
}
.price-table tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #eaebee;
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: 16px 22px 16px 18px;
  color: #23334D;
  flex: 1 1 120px;
}
.price-table td:last-child {
  text-align: right;
  color: var(--secondary);
  font-weight: 600;
}
@media (max-width: 700px) {
  .price-table td { font-size: .93rem; padding: 11px 7px; }
}

/* CERTIFICATES ------------------------------------------------------- */
.certifications .certificates {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}
.certifications .certificates img {
  height: 54px;
  width: 54px;
}

/* LEGAL/PRIVACY PAGES ------------------------------------------------ */
.legal-intro, .privacy-policy, .contact-privacy {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(35,51,77,0.045);
}
.legal-intro h1, .legal-intro h2 {
  margin-bottom: 14px;
  color: var(--primary);
}
.legal-intro ul {
  margin-top: 14px;
  margin-bottom: 10px;
  color: #384860;
  padding-left: 0;
}
.legal-intro li {
  padding-bottom: 4px;
  padding-left: 0;
  position: relative;
}
.privacy-policy ul { padding-left: 20px; margin-bottom: 10px; }
.privacy-policy li:before, .legal-intro li:before {
  content: '\2022';
  color: var(--secondary);
  font-size: 1.3em;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* FAQ SECTION -------------------------------------------------------- */
.faq-list .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 7px rgba(35,51,77,0.06);
  padding: 18px 18px 12px 18px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.16rem;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  position: relative;
  color: var(--primary);
}
.faq-content {
  margin-bottom: 6px;
  color: #384860;
  font-size: 1rem;
  transition: max-height .24s;
}
.contact-for-more-questions {
  margin-top: 18px;
  color: #23334D;
  font-size: 1rem;
}


/* MAP SECTION -------------------------------------------------------- */
.map {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(35,51,77,0.04);
}

/* THANK YOU PAGE ----------------------------------------------------- */
.thank-you .btn-primary { margin-top: 18px; }

/* GENERAL CARD/MODERN BLOCKS ----------------------------------------- */
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,51,77,0.07);
  padding: 30px 22px;
  margin-bottom: 20px;
  min-width: 250px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* TRANSITIONS & HOVER ANIMATIONS ------------------------------------- */
.card, .testimonial-card, .feature-item, .faq-item, .services-list .service-entry, .steps .step-grid > div, .features .feature-grid > div {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 5px 22px rgba(35,51,77,0.12); 
  transform: translateY(-2px) scale(1.015);
}

/* FORM ELEMENTS ------------------------------------------------------ */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #d5dbe3;
  background: #f3f4f7;
  color: var(--primary);
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
}
label { font-weight: 500; margin-bottom: 6px; display: block; color: var(--primary); }

/* COOKIE BANNER ------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #23334D;
  box-shadow: 0 -4px 18px rgba(35,51,77,0.08);
  z-index: 1200;
  padding: 18px 24px 18px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.61,0,0.41,1);
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 320px;
  max-width: 720px;
}
.cookie-banner .btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(35,51,77,0.07);
  transition: background 0.18s, color 0.18s, border 0.16s;
}
.cookie-banner button.accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-banner button.accept:hover { background: var(--secondary); border-color: var(--secondary); }
.cookie-banner button.reject {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner button.reject:hover { background: #ebebeb; }
.cookie-banner button.settings {
  background: #fff;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-banner button.settings:hover { background: var(--secondary); color: #fff; }

@media (max-width: 800px) {
  .cookie-banner { flex-direction: column; gap: 18px; align-items: stretch; padding: 14px 12px; }
  .cookie-banner .btn-group { justify-content: flex-end; }
}

/* COOKIE MODAL ------------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(35,51,77,0.16);
  z-index: 1300;
  min-width: 330px;
  max-width: 94vw;
  min-height: 200px;
  padding: 33px 34px 28px 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s, box-shadow 0.19s;
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.35rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-modal .category-label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23334D;
}
.cookie-modal .toggle {
  margin-left: auto;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle label {
  display: block;
  width: 34px;
  height: 20px;
  background: #e4e6ed;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: background 0.16s;
  border: 1px solid #dae0ea;
}
.cookie-modal .toggle label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s, background 0.13s;
  box-shadow: 0 1px 3px rgba(35,51,77,0.04);
}
.cookie-modal .toggle input:checked + label {
  background: var(--secondary);
}
.cookie-modal .toggle input:checked + label:after {
  left: 15px;
  background: var(--primary);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .cookie-actions button {
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 22px;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(35,51,77,0.05);
  transition: background 0.18s, color 0.18s, border 0.14s;
}
.cookie-modal .cookie-actions .accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-modal .cookie-actions .accept:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal .cookie-actions .close {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-modal .cookie-actions .close:hover {
  background: #f6f7fa;
}
@media (max-width: 496px){
  .cookie-modal {
    padding: 17px 8vw 12px 7vw;
    min-width: 0;
  }
}


/* RESPONSIVE BREAKPOINTS ---------------------------------------------- */
@media (max-width: 870px) {
  .container { max-width: 98vw; }
}
@media (max-width: 640px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 10px;
  }
  .about-preview,
  .legal-intro,
  .privacy-policy,
  .contact-privacy,
  .map {
    padding: 22px 10px;
  }
}

/* ACCESSIBILITY ------------------------------------------------------- */
:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* UTILITIES ----------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.pb-0 { padding-bottom: 0 !important; }
.gap-20 { gap: 20px !important; }

/* PRINT (minimal) ----------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; color: #23334D; }
}
