/* ====================================================================
   CSS RESET & BASE TYPOGRAPHY (Normalize / Reset)
   ==================================================================== */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #ECF0F4;
  color: #1F375B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #237167;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1F375B;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
strong, b { font-weight: 700; }

/* ====================================================================
   CORE BRAND COLORS & TYPOGRAPHY
   ==================================================================== */
:root {
  --primary: #1F375B;
  --secondary: #ECF0F4;
  --accent: #237167;
  --accent-alt: #379C8D;
  --white: #FFFFFF;
  --shadow: 0 4px 24px 0 rgba(31,55,91,0.06);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.2s cubic-bezier(.57,.09,.52,1.18);

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; }

p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #27304a;
  line-height: 1.65;
}

.subheadline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #475B77;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ====================================================================
   STRUCTURE, CONTAINER, SECTIONS, LAYOUT BASE
   ==================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ====================================================================
   HEADER & TOP NAVIGATION (Structured, geometric)
   ==================================================================== */
header {
  background: var(--white);
  box-shadow: 0 2px 12px 0 rgba(31,55,91,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 12px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;
  font-weight: 500;
  position: relative;
  transition: background .18s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-alt);
  color: var(--white);
}

.cta-button {
  background: linear-gradient(98deg, var(--accent), var(--accent-alt));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: none;
  border-radius: 0 16px 0 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background var(--transition), box-shadow .15s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px 0 rgba(55,156,141,.12);
  outline: none;
}

/* ====================================================================
   MOBILE BURGER MENU
   ==================================================================== */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  z-index: 5001;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: 0 4px 18px 0 rgba(31,55,91,0.11);
  cursor: pointer;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-alt);
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.84,.03,.35,1.08);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: var(--accent-alt);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 44px; height: 44px;
  font-size: 2.2rem;
  z-index: 6002;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(55,156,141,0.13);
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--white);
}
.mobile-nav {
  margin-top: 78px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent-alt);
  border-bottom: 2px solid var(--accent-alt);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header .container {
    gap: 24px;
  }
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  background: var(--secondary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 56px;
  min-height: 340px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 290px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  max-width: 610px;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 12px;
}

/* ====================================================================
   FEATURE CARDS (geometric_structured)
   ==================================================================== */
.features {
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  width: calc(50% - 12px);
  min-width: 240px;
  max-width: 340px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  border-top: 4px solid var(--accent);
}
.feature-item img {
  width: 44px;
  height: 44px;
  display: block;
}
.feature-item h3 {
  font-size: 1.15rem;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 32px 0 rgba(55,156,141,.14);
  transform: translateY(-3px) scale(1.025) skew(-1deg, -1deg);
  border-top: 4px solid var(--accent-alt);
}

/* ====================================================================
   CARD & FLEX CONTAINER PATTERNS
   ==================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-item, .card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .feature-grid{
    flex-direction: column;
    gap: 20px;
  }
}

/* ====================================================================
   SERVICE LIST, PRICING, FAQ, ACCORDION
   ==================================================================== */
.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.07rem;
  font-family: var(--font-body);
  gap: 10px;
}
.service-price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-left: auto;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 270px;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 5px solid var(--accent-alt);
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-card h2 {
  font-size: 1.16rem;
}
.service-card:hover {
  box-shadow: 0 8px 34px 0 rgba(55,156,141,.15);
  transform: translateY(-4px) scale(1.012);
  border-left: 5px solid var(--accent);
}
.price {
  margin-top: 6px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-card {
    width: 100%;
    min-width: unset;
    border-radius: var(--radius);
  }
}

.step-by-step {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
  counter-reset: stepnum;
}
.step-by-step li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  font-family: var(--font-body);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 19px 16px;
  position: relative;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  background: var(--secondary);
  border-radius: 12px;
}
.step-icon img {
  width: 28px;
  height: 28px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #ECECEC;
  font-size: 1.1rem;
  font-family: var(--font-body);
}
.pricing-row:last-child {
  border-bottom: none;
}

.transparent-pricing-notes {
  margin-top: 8px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 16px 20px;
  transition: box-shadow .14s;
}
.faq-item h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
}

/* ====================================================================
   TESTIMONIAL SECTION & STYLES (geometric_structured)
   ==================================================================== */
.testimonials, .testimonial-list {
  margin-bottom: 50px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 350px;
  max-width: 98vw;
  min-width: 245px;
  margin-bottom: 20px;
  border-left: 5px solid var(--accent-alt);
  transition: box-shadow .17s, border .16s;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-family: var(--font-body);
  color: #23304e;
  margin-bottom: 6px;
  text-align: left;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 500;
  font-family: var(--font-body);
  display: flex;
  gap: 10px;
}
.stars {
  color: var(--accent);
  font-size: 1.15em;
  letter-spacing: .03em;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(55,156,141,.14);
  border-left: 5px solid var(--accent);
}

@media (max-width: 860px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}

/* ====================================================================
   CASE STUDIES (erfahrungen.html)
   ==================================================================== */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 22px;
  min-width: 240px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--primary);
  transition: box-shadow 0.16s, border-bottom .15s;
}
.case-study-card:hover {
  box-shadow: 0 8px 32px 0 rgba(31,55,91,.14);
  border-bottom: 4px solid var(--accent-alt);
}
@media (max-width: 900px) {
  .case-studies {
    flex-direction: column;
    gap: 18px;
  }
  .case-study-card {
    width: 100%;
    min-width: unset;
    border-radius: var(--radius);
  }
}

/* ====================================================================
   KNOWLEDGE BASE TOPIC TAGS, ARTICLES (wissenswertes.html)
   ==================================================================== */
.topic-tags {
  display: flex;
  gap: 14px;
  margin: 8px 0 18px 0;
  flex-wrap: wrap;
}
.topic-tags span {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 7px 14px 7px 14px;
  padding: 7px 18px;
  font-weight: 500;
  letter-spacing: .03em;
}
.knowledge-base-search {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
}
.knowledge-base-search input[type="text"] {
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: var(--white);
  border: 1.5px solid #D7DFEB;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  width: 100%;
  transition: border 0.16s;
}
.knowledge-base-search input[type="text"]:focus {
  border-color: var(--accent);
  outline: none;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 14px 22px;
  transition: box-shadow 0.15s;
}
.article-item h2 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.article-item:hover {
  box-shadow: 0 6px 26px rgba(31,55,91,.10);
}

/* Country Guides */
.country-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.guide-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px 18px 18px;
  min-width: 180px;
  flex: 1 1 260px;
}

.faq-international {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.download-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.download-link {
  background: var(--accent-alt);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  transition: background var(--transition), color var(--transition);
}
.download-link:hover, .download-link:focus {
  background: var(--primary);
  color: var(--white);
}

/* ====================================================================
   CONTACT BLOCKS (kontakt.html)
   ==================================================================== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 15px;
}
.address-block, .email-block, .hours-block, .phone-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 16px 18px;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.address-block h2, .email-block h2, .hours-block h2, .phone-block h2 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}
@media (max-width: 850px) {
  .contact-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ====================================================================
   FOOTER
   ==================================================================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0 0 22px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 14px 0 rgba(31,55,91,0.045);
}
footer .container {
  flex-direction: column;
  padding: 0 18px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1.5px solid #23314d;
  padding: 24px 0 18px 0;
}
.footer-top img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  color: var(--white);
  font-size: 0.97rem;
  font-family: var(--font-body);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border .13s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent-alt);
  border-bottom: 2px solid var(--accent-alt);
}
.footer-bottom {
  font-family: var(--font-body);
  font-size: 0.98rem;
  opacity: .89;
  padding: 18px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: #dce4ef;
}
.footer-bottom a {
  color: var(--accent-alt);
  text-decoration: underline;
}
@media (max-width: 750px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-top {
    padding: 20px 0 12px 0;
  }
}

/* ====================================================================
   COOKIE BANNER & COOKIE PREFERENCES MODAL
   ==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--primary);
  color: var(--white);
  padding: 32px 16px 22px 16px;
  box-shadow: 0 -8px 38px 0 rgba(31,55,91,0.14);
  border-radius: 16px 16px 0 0;
  z-index: 8000;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  animation: cookieBannerIn .48s cubic-bezier(.7,.03,.15,1.01);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--white);
  margin-right: 20px;
  max-width: 540px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .17s, color .17s;
  box-shadow: var(--shadow);
}
.cookie-btn.cookie-btn-accept {
  background: var(--accent-alt);
  color: var(--white);
}
.cookie-btn.cookie-btn-reject {
  background: #d84848;
  color: var(--white);
}
.cookie-btn.cookie-btn-settings {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--accent-alt);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--white);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--white);
  color: var(--primary);
  z-index: 9000;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 62px 0 rgba(31,55,91,0.18);
  min-width: 320px;
  max-width: 94vw;
  padding: 32px 34px 22px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn .28s cubic-bezier(.7,.04,.2,1.09);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,-30%) scale(0.94); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal-close {
  background: var(--accent-alt);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
}
.cookie-modal-cats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 6px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 22px;
}
.cookie-cat-title {
  font-size: 1.07rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  min-width: 130px;
}
.cookie-cat-desc {
  font-size: 0.96rem;
  color: #455061;
}
.cookie-cat-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #e0eef2;
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .17s;
  border: 1.7px solid #b7cfe0;
}
.cookie-cat-toggle:checked {
  background: var(--accent-alt);
  border-color: var(--accent-alt);
}
.cookie-cat-toggle:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .17s;
}
.cookie-cat-toggle:checked:before {
  transform: translateX(13px);
  background: var(--white);
}
.cookie-cat-essential {
  color: #999;
  font-style: italic;
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 20px 7px 16px 7px;
  }
  .cookie-modal {
    min-width: unset;
    padding: 18px 8px 12px 10px;
    max-width: 99vw;
  }
}

/* ====================================================================
   CTA SECTION
   ==================================================================== */
.cta {
  background: var(--accent-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 48px 18px 38px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta h2, .cta p {
  color: var(--white);
}
.cta .cta-button {
  margin-top: 10px;
  background: var(--primary);
  color: var(--white);
}
.cta .cta-button:hover {
  background: var(--white);
  color: var(--primary);
}

/* ====================================================================
   BUTTONS, FORMS, INPUTS
   ==================================================================== */
button, input[type="submit"] {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background .16s, color .14s, box-shadow 0.13s;
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 10px;
  border: 1.5px solid #C7DAEA;
  padding: 12px 16px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-alt);
  outline: none;
}

/* ====================================================================
   UTILITIES & GEOMETRIC SHAPES
   ==================================================================== */
.geometric-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
}

/* Use in backgrounds for geometric/structured accents if needed */

/* ====================================================================
   RESPONSIVE GENERAL RULES
   ==================================================================== */
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; margin-bottom: 14px; }
  h2 { font-size: 1.18rem; margin-bottom: 10px; }
  h3 { font-size: 1.02rem; }
  .section, .hero {
    padding: 18px 8px;
    border-radius: 10px;
  }
  .cta {
    padding: 24px 6px 24px 6px;
    border-radius: 14px;
  }
  .features {
    padding: 18px 0 8px 0;
    margin-bottom: 36px;
  }
}

/* ====================================================================
   MISC: TRANSITIONS, SHADOWS, ETC.
   ==================================================================== */
::-webkit-scrollbar { width: 12px; background: #E8EEF2; }
::-webkit-scrollbar-thumb { background: #C5D6E2; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #adbfcf; }

/* ====================================================================
   END OF STYLE.CSS
   ==================================================================== */
