/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  background: #F2F6FA;
  color: #24384a;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #24384a;
  background: var(--gradient-bg-primary, linear-gradient(135deg,#F2F6FA 0%,#8AC1D4 100%));
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus { outline: 2px solid #8AC1D4; outline-offset: 2px; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ===== CSS VARIABLES FOR COLORS & FONTS ===== */
:root {
  --color-primary: #365C7D;
  --color-secondary: #8AC1D4;
  --color-accent: #F2F6FA;
  --color-dark: #24384a; /* Text color on accent/light */
  --color-light: #fff;
  --color-grey: #e7e9ed;
  --color-gradient-light: #F2F6FA;
  --color-gradient-mid: #E6EFF6;
  --color-gradient-dark: #8AC1D4;
  --gradient-bg-primary: linear-gradient(135deg, #F2F6FA 0%, #8AC1D4 100%);
  --gradient-btn: linear-gradient(90deg, #365C7D 0%, #8AC1D4 100%);
  --gradient-hero: linear-gradient(120deg, #8AC1D4 0%, #365C7D 100%);
  --shadow-card: 0 4px 16px 0 rgba(54,92,125,0.08),0 1.5px 6px 0 rgba(54,92,125,0.05);
  --radius-card: 18px;
  --radius-btn: 30px;
  --radius-section: 28px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
b, strong {
  font-weight: 600;
  color: var(--color-primary);
}
blockquote {
  font-style: italic;
  color: var(--color-primary);
  background: var(--color-gradient-light);
  border-left: 5px solid var(--color-secondary);
  padding: 16px 28px 16px 18px;
  border-radius: var(--radius-card);
  margin-bottom: 0;
}

/* ===== GENERIC SPACING PATTERNS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.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 {
  background: var(--color-light);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(54,92,125,0.15);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  color: #1a2933;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(54,92,125,0.13);
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== NAVIGATION (DESKTOP & MOBILE) ====== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(54,92,125,0.04);
  padding-top: 0;
  position: sticky;
  top: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 24px 0 16px 0;
  font-family: var(--font-display);
  font-weight: 500;
  background: transparent;
  transition: background 0.24s;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a.cta-btn {
  background: var(--gradient-btn);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px 0 rgba(54,92,125,0.10);
  font-size: 1.07rem;
  margin-left: 8px;
  letter-spacing: 0.04em;
  transition: box-shadow 0.21s, background 0.22s, color 0.20s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: linear-gradient(90deg,#27405d 0%,#68bbda 100%);
  box-shadow: 0 5px 16px 0 rgba(54,92,125,0.21);
  color: #e9f6f9;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

/* Hamburger Button for Mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 500;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: linear-gradient(90deg,#27405d 0%,#68bbda 100%);
  color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 400px;
  z-index: 9999;
  background: #fff;
  box-shadow: -2px 0 24px 0 rgba(54,92,125,0.14);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.68,-0.35,.28,1.25), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  margin: 20px 0 0 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 36px 28px 6px 28px;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.23rem;
  letter-spacing: 0.02em;
  padding: 14px 10px;
  border-radius: 8px;
  background: none;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Hide desktop nav, show mobile on small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    min-height: 60px;
    padding-bottom: 6px;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Mobile menu for smaller screens */
@media (max-width: 640px) {
  .mobile-menu {
    max-width: 100vw;
  }
  .mobile-nav {
    padding: 24px 8px 12px 16px;
    gap: 12px;
  }
  .mobile-menu-close {margin: 19px 0 0 10px; font-size: 2rem; }
}

/* ===== HERO & SECTION BACKGROUNDS ===== */
.hero {
  padding-top: 32px;
  padding-bottom: 48px;
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 2px 16px 0 rgba(54,92,125,0.09);
}
.hero h1, .hero p { color: #fff; }
.hero .cta-btn {
  margin-top: 12px;
  background: var(--color-light);
  color: var(--color-primary);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}

.section {
  background: #fff;
  border-radius: var(--radius-section);
  box-shadow: 0 1.7px 13px 0 rgba(54,92,125,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== FEATURE LISTS ===== */
.feature-grid, .feature-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li,
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-gradient-light);
  padding: 22px 20px 20px 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 26px 0 rgba(54,92,125,0.13);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.feature-grid img,
.service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.feature-grid h3, .service-list h3 {
  font-size: 1.23rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.feature-grid p, .service-list p {
  font-size: 1.04rem;
  color: var(--color-dark);
}
.pricing {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 15px;
  border-radius: 30px;
  font-size: 1.01rem;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.02em;
  margin-top: 7px;
}

/* USP & TRUST BADGES */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1.13rem;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
.trust-badges span {
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 20px;
  padding: 7px 16px;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
  background: var(--gradient-bg-primary);
  color: var(--color-primary);
  border-radius: var(--radius-section);
  box-shadow: 0 1.7px 13px 0 rgba(54,92,125,0.05);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section .cta-btn {
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 8px;
  background: var(--gradient-btn);
  color: #fff;
  padding: 13px 38px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px 0 rgba(54,92,125,0.10);
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: linear-gradient(90deg,#27405d 0%,#68bbda 100%);
  color: #fff;
  box-shadow: 0 7px 20px 0 rgba(54,92,125,0.14);
  transform: translateY(-2px) scale(1.017);
}

/* === GENERAL BUTTONS & INTERACTIONS === */
.cta-btn,
button,
input[type='submit'] {
  display: inline-block;
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-btn);
  padding: 11px 32px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 rgba(54,92,125,0.07);
  transition: box-shadow 0.15s, background 0.16s, color 0.15s, transform 0.18s;
}
.cta-btn:hover, button:hover, input[type='submit']:hover,
.cta-btn:focus, button:focus, input[type='submit']:focus {
  background: linear-gradient(90deg,#27405d 0%,#68bbda 100%);
  color: #fff;
  box-shadow: 0 5px 16px 0 rgba(54,92,125,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* Links in Cards/Sections */
.content-wrapper a:not(.cta-btn) {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 500;
}
.content-wrapper a:not(.cta-btn):hover,
.content-wrapper a:not(.cta-btn):focus {
  color: var(--color-primary);
  text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section, .testimonials {
  background: var(--color-gradient-light);
  border-radius: var(--radius-section);
  box-shadow: 0 2.5px 9px 0 rgba(54,92,125,0.03);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-section h2, .testimonials h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
}
.testimonial-card blockquote {
  margin-bottom: 0 !important;
  font-size: 1.12rem;
  background: none;
  border-left: 2.5px solid var(--color-secondary);
  padding-left: 18px;
  color: var(--color-primary);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #24384a;
}
.testimonials-section .testimonial-card,
.testimonials .testimonial-card {
  background: #fff;
  box-shadow: var(--shadow-card);
}

/* ===== FAQ ACCORDION (STATIC) ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 18px;
}
.faq-accordion div {
  background: var(--color-gradient-light);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.13s, background 0.12s;
  margin-bottom: 0 !important;
}
.faq-accordion h3 {
  color: var(--color-primary);
  font-size: 1.09rem;
  margin-bottom: 9px;
}
.faq-accordion p {
  font-size: 1.04rem;
  color: var(--color-dark);
}
.contact-prompt a {
  font-weight: 600;
  color: var(--color-secondary);
}
.contact-prompt a:hover, .contact-prompt a:focus {
  color: var(--color-primary);
}

/* ===== LEGAL/INFORMATIONAL PAGES STYLING ===== */
.legal-section,.cookie-section,.gdpr-section,.terms-section {
  background: #fff;
  border-radius: var(--radius-section);
  box-shadow: 0 1.7px 13px 0 rgba(54,92,125,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-section h1,.cookie-section h1,.gdpr-section h1,.terms-section h1 {
  color: var(--color-primary);
  font-size: 1.9rem;
  margin-bottom: 14px;
}

/* ===== GALLERY ===== */
.galerie-highlights ul {
  margin-bottom: 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.galerie-highlights .text-section {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.galerie-highlights .text-section span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.03rem;
  color: var(--color-primary);
  background: var(--color-gradient-light);
  border-radius: 16px;
  padding: 6px 13px 6px 8px;
  font-weight: 500;
}
.galerie-highlights .text-section img {
  height: 20px;
  width: 20px;
  display: inline-block;
}

/* ===== CONTACT PAGE ===== */
.kontakt-section .contact-details p {
  margin-bottom: 9px;
}
.google-map-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gradient-light);
  border-radius: 16px;
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  color: var(--color-dark);
  margin-top: 4px;
}
.google-map-placeholder img {
  width: 29px;
  height: 29px;
}
.response-guarantee {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 16px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 500;
  margin-top: 18px;
  display: inline-block;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section .next-steps ul {
  margin-top: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 42px;
  width: 100%;
  padding: 26px 0 23px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -1.5px 10px 0 rgba(54,92,125,0.05);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  padding: 5px 13px;
  border-radius: 8px;
  transition: background 0.17s, opacity 0.14s;
  font-family: var(--font-display);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.03rem;
  opacity: 0.92;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  min-height: 56px;
  background: #fff;
  box-shadow: 0 -3px 16px 0 rgba(54,92,125,0.13);
  border-radius: 24px 24px 0 0;
  padding: 28px 15px 20px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  z-index: 11000;
  opacity: 0;
  transform: translateY(200px);
  pointer-events: none;
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner p {
  flex: 1 1 220px;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  margin-bottom: 0;
  margin-right: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  background: var(--gradient-btn);
  color: #fff;
  font-size: 1.03rem;
  padding: 9px 23px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
}
.cookie-banner button.cookie-settings-btn {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: linear-gradient(90deg,#27405d 0%,#68bbda 100%);
  color: #fff;
}
.cookie-banner button.cookie-settings-btn:hover, .cookie-banner button.cookie-settings-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,46,61,0.47);
  display: none;
}
.cookie-modal-backdrop.show {
  display: block;
}
.cookie-modal {
  position: fixed;
  z-index: 12010;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%) scale(1.04);
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 32px 0 rgba(54,92,125,0.14);
  padding: 32px 24px 28px 24px;
  display: none;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.26s;
}
.cookie-modal.show {
  display: flex;
  animation: modalin 0.36s cubic-bezier(.48,-0.03,.31,1.13);
}
@keyframes modalin {
  from { transform: translate(-50%,30%) scale(0.90); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--color-gradient-light);
  padding: 9px 14px;
  border-radius: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-primary);
  flex: 1 1 90px;
  font-family: var(--font-display);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal button {
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1.01rem;
  font-family: var(--font-display);
}

/* Always enabled (greyed out toggle) */
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-category.essential label::after {
  content: '✓';
  display: inline-block;
  color: var(--color-secondary);
  margin-left: 8px;
  font-size: 1.1rem;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1120px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.50rem; }
  .card { padding: 20px 12px; }
  .section,.testimonials-section,.cta-section, .legal-section, .cookie-section, .gdpr-section, .terms-section { padding: 32px 8px; }
}
@media (max-width: 768px) {
  .feature-grid, .feature-list, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section,.testimonials-section,.legal-section,.cta-section,.cookie-section, .gdpr-section, .terms-section {
    padding: 28px 3vw;
    margin-bottom: 42px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding-top: 18px;
    padding-bottom: 25px;
  }
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 11px;
  }
  .galerie-highlights .text-section {
    gap: 11px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .container { padding: 0 4px; }
  .hero { padding-left: 2vw; padding-right: 2vw; }
  .footer-nav, .footer-contact { font-size: 0.98rem; }
  .cookie-modal { padding: 17px 6px; }
  .cookie-banner p { font-size: 0.97rem; }
  .cta-btn, button, input[type='submit'] { font-size: 0.99rem; padding: 9px 16px; }
}

/* ===== ACCESSIBILITY FOCUSED ===== */
:focus-visible { outline: 2.5px dashed var(--color-secondary); outline-offset: 2.5px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 21000;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
}
.skip-link:focus {
  left: 18px;
  width: auto;
  height: auto;
  font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(54,92,125,0.08);
  background: #24384a;
}

/* ====== END OF Styles ====== */
