/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: #F5F3FA;
  color: #244259;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #244259;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #FFD600;
  outline: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #244259;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.18; margin-bottom: 24px; }
h2 { font-size: 2rem;   line-height: 1.2;  margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 10px; }
h4 { font-size: 1.125rem; line-height: 1.3; }
h5, h6 { font-size: 1rem; line-height: 1.3; }
strong, b {font-weight: 700;}
p, ul, ol, li, blockquote {
  margin-bottom: 16px;
  color: #244259;
}
blockquote {
  font-style: italic;
  padding-left: 1.1em;
  border-left: 3px solid #FFD600;
  color: #244259;
  margin-bottom: 24px;
}
ul, ol { padding-left: 24px; }

.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #243140;
  opacity: 0.88;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section { padding: 32px 8px; margin-bottom: 32px; }
}

/* Header & Navigation */
header {
  background: #fff;
  border-bottom: 1px solid #EAE7F2;
  padding: 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 12px 0 rgba(36,66,89,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img { height: 48px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #244259;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
  padding: 5px 0 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD600;
}
.main-nav a.active, .main-nav a[aria-current="page"] {
  color: #FFD600;
  font-weight: 700;
}

.btn-primary {
  display: inline-block;
  background: #244259;
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 38px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px 0 rgba(36,66,89,0.11);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  outline: none;
}
.btn-primary:after {
  content: '';
  display: block;
  position: absolute;
  left: 18px; right: 18px; bottom: 9px;
  height: 3px;
  border-radius: 2px;
  background: #FFD600;
  opacity: 0.1;
  pointer-events: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD600;
  color: #244259;
  box-shadow: 0 4px 18px 0 rgba(36,66,89,0.16);
}

/* Mobile Burger Menu & Overlay */
.mobile-menu-toggle {
  display: none;
  background: #244259;
  color: #FFD600;
  border: none;
  border-radius: 4px;
  font-size: 2rem;
  padding: 4px 14px 2px 14px;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 1022;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD600;
  background: #FFD600;
  color: #244259;
}
@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav,
  header .btn-primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 20px 0 rgba(36,66,89,0.15);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.48,.22,.15,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(.48,.22,.15,1.01);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 20px;
  margin-bottom: 10px;
  background: #244259;
  color: #FFD600;
  border: none;
  font-size: 2rem;
  padding: 2px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 30;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 38px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #244259;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.17s, background 0.1s;
  margin-right: 18px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD600;
  background: #F5F3FA;
}
@media (min-width: 961px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: #244259;
  color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 32px rgba(36,66,89,0.13);
  margin-bottom: 48px;
  padding: 65px 0 72px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.hero h1 { color: #FFD600; letter-spacing: 0.01em; }
.hero .subheadline { color: #fff; opacity: 0.95; }
.hero .btn-primary {
  background: #FFD600;
  color: #244259;
  box-shadow: 0 6px 22px #FFE88D55;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #244259;
  color: #FFD600;
}
@media (max-width: 820px) {
  .hero { padding: 44px 0 52px 0; border-radius: 0 0 24px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 34px 0 32px 0; border-radius: 0 0 14px 14px; }
  .hero h1 {font-size: 2rem;}
}

/* Features Section */
.features {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px 0 rgba(36,66,89,0.16);
  padding: 38px 0;
  margin-bottom: 42px;
}
.features .content-wrapper { align-items: flex-start; }
.features h2 { color: #244259; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 22px;
}
.feature {
  background: #F5F3FA;
  border: 1.5px solid #ECE6D2;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(36,66,89,0.07);
  flex: 1 1 260px;
  min-width: 235px;
  max-width: 350px;
  padding: 30px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature img {
  width: 44px;
  margin-bottom: 4px;
}
.feature h3 {
  color: #244259;
  font-size: 1.15rem;
  margin-bottom: 0;
}
.feature p {
  color: #373C46;
  font-size: 1rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px 0 #FFD60030;
  border: 1.5px solid #FFD600;
}
@media (max-width: 1000px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    max-width: unset;
    width: 100%;
  }
}

/* About Preview & Team Brief */
.about-preview {
  background: #fffbe9;
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(255, 214, 0, 0.06);
}
.team-brief {
  background: #FFD600;
  color: #244259;
  border-radius: 18px;
  padding: 18px 22px;
  font-weight: 600;
  box-shadow: 0 4px 22px 0 #FFD60011;
}

/* Testimonials */
.testimonials {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px 0 rgba(36,66,89,0.1);
}
.testimonials .content-wrapper { align-items: flex-start; }
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 18px 24px;
  background: #F5F3FA;
  border-radius: 20px;
  border: 1.5px solid #EEE5B4;
  box-shadow: 0 2px 12px 0 rgba(255,214,0,0.06);
  flex: 1 1 285px;
  min-width: 230px;
  max-width: 360px;
  margin-bottom: 20px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1F2632;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 #FFD60025;
  border: 1.5px solid #FFD600;
}
.testimonial-card p {
  color: #243140;
  line-height: 1.7;
}
.testi-name {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD600;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.star-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #244259;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 14px;
}
.star-rating-summary img {
  height: 29px;
}
@media (max-width: 800px) {
  .testimonial-row { flex-direction: column; gap: 19px; }
}

/* CTA Section */
.cta {
  background: #244259;
  color: #fff;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 8px 22px 0 rgba(36,66,89,0.13);
}
.cta h2 { color: #FFD600; }
.cta .btn-primary {
  margin: 18px 0 6px 0;
  background: #FFD600;
  color: #244259;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #244259;
  color: #FFD600;
}
.trust-badges {
  color: #FFD600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 22px;
}

/* Cards & Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 17px 0 rgba(36,66,89,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Content Grid */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

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

/* Feature items (for features section) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Team Member List (About) */
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.team-member {
  background: #F5F3FA;
  border-radius: 13px;
  padding: 14px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #244259;
  font-size: 1.02rem;
  margin-bottom: 5px;
  border: 1px solid #F1E7A4;
}
.team-values ul {
  list-style-type: disc;
  padding-left: 25px;
  font-size: 1.08rem;
}

/* Table (Leistungen) */
.service-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 #FFD60010;
}
.service-list th, .service-list td {
  padding: 16px 14px;
  font-size: 1.05rem;
  border-bottom: 1px solid #ECE6D2;
  text-align: left;
}
.service-list th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFF9E2;
  color: #244259;
  font-weight: 700;
}
.service-list tr:last-child td {
  border-bottom: none;
}

/* Service Highlights */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}
.service-card {
  flex: 1 1 220px;
  max-width: 320px;
  background: #F5F3FA;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #FFD60009;
  padding: 20px 18px 21px 18px;
  border: 1px solid #F3E1C3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.service-card img {
  width: 34px;
  margin-bottom: 5px;
}
.service-card h3 { color: #244259; margin-bottom: 2px; }
.service-card p { color: #373C46; font-size: 1.02rem; }
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 30px 0 #FFD60022;
  border: 1.5px solid #FFD600;
}
@media (max-width: 900px) {
  .service-highlights {
    flex-direction: column;
    gap: 18px;
  }
}

/* Process Steps (Ablauf, Leistungen) */
.timeline, .step-list, .next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 13px;
  margin-bottom: 20px;
}
.timeline li, .step-list li, .next-steps ul li {
  background: #F5F3FA;
  border-radius: 13px;
  padding: 12px 18px;
  color: #244259;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px 0 #FFD60009;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #fffbe9;
  color: #244259;
  border-radius: 13px;
  padding: 14px 18px;
  border: 1px solid #FFD60066;
  cursor: pointer;
  font-size: 1.08rem;
  transition: background 0.16s;
  margin-bottom: 8px;
}
.faq-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-item > div {
  display: none;
  padding-top: 6px;
  color: #263149;
  font-style: italic;
}
.faq-item.open > div {
  display: block;
}
.faq-item:hover, .faq-item.open {
  background: #FFF7B1;
}

/* Blog & Articles */
.category-list {
  color: #244259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
.articles-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.article-preview {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #FFD6000F;
  padding: 22px 19px 16px 19px;
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 335px;
  margin-bottom: 16px;
  border: 1px solid #ECE6D2;
  transition: box-shadow 0.17s, border 0.17s;
}
.article-preview h3 {
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.article-preview p {
  font-size: 1rem;
  color: #313B48;
}
.article-preview:hover, .article-preview:focus-within {
  border: 1.5px solid #FFD600;
  box-shadow: 0 8px 28px #FFD60020;
}
@media (max-width: 1000px) {
  .articles-preview-list {
    gap: 15px;
  }
}
@media (max-width: 800px) {
  .articles-preview-list {
    flex-direction: column;
    gap: 10px;
  }
}

/* Social Links (Kontakt) */
.social-links {
  display: flex;
  gap: 22px;
  margin: 14px 0 8px 0;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD600;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: box-shadow 0.13s, background 0.15s;
  box-shadow: 0 2px 8px 0 #FFD60019;
}
.social-links a:hover, .social-links a:focus {
  background: #244259;
}
.social-links img {
  width: 26px;
  height: 26px;
}

/* Footer */
footer {
  background: #244259;
  color: #fff;
  padding: 46px 0 16px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 52px;
  font-size: 1rem;
  box-shadow: 0 -2px 22px 0 #FFD6000D;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
}
.footer-nav a {
  color: #FFD600;
  font-size: 1.07rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe9;
}
.claim {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD600;
  font-size: 1.12rem;
  margin-top: 10px;
}
.short-contact {
  color: #fffbe9;
  font-size: 1rem;
  margin-top: 12px;
}
.short-contact a {
  color: #FFD600;
  text-decoration: underline dotted;
  word-break: break-all;
}
.short-contact a:hover, .short-contact a:focus {
  color: #fffbe9;
}
@media (max-width: 900px) {
  .footer-columns { flex-direction: column; gap: 25px; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #262D37;
  color: #fff;
  z-index: 3000;
  width: 100%;
  box-shadow: 0 -2px 18px 0 #24425933;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 18px 18px 18px;
  font-size: 0.98rem;
  border-radius: 28px 28px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s, transform 0.45s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #FFD600;
  color: #244259;
  box-shadow: 0 2px 8px #FFD60035;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F5F3FA;
  color: #244259;
}
.cookie-banner .reject {
  background: #fffbe9;
  color: #244259;
  border: 1px solid #FFD600;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFD600;
  color: #244259;
}
.cookie-banner .settings {
  background: #244259;
  color: #FFD600;
  border: 1.3px solid #FFD600;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFD600;
  color: #244259;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,66,89,0.47);
  z-index: 3999;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #244259;
  border-radius: 18px;
  box-shadow: 0 10px 32px #24425930;
  padding: 38px 26px 26px 26px;
  min-width: 295px;
  max-width: 95vw;
  max-height: 92vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #244259;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.cookie-modal .toggle {
  width: 40px; height: 26px;
  border-radius: 13px;
  appearance: none;
  background: #ECE6D2;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal .toggle:checked {
  background: #FFD600;
}
.cookie-modal .toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px; 
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
  box-shadow: 0 2px 8px #FFD60013;
}
.cookie-modal .toggle:checked::before {
  left: 16px;
}
.cookie-modal .category-desc {
  color: #4A5263;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 32px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #FFD600;
  color: #244259;
  transition: background .14s, color .14s;
}
.cookie-modal-actions .cancel {
  background: #fffbe9;
  color: #244259;
  border: 1.2px solid #FFD600;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: #FFD600;
  color: #244259;
}
.cookie-modal-actions .save {
  background: #244259;
  color: #FFD600;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: #FFD600;
  color: #244259;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 13px;
  background: #FFD600;
  color: #244259;
  border: none;
  border-radius: 5px;
  width: 32px; height: 32px;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #244259;
  color: #FFD600;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: #FFD600; }
.bg-primary { background: #244259 !important; color: #FFD600 !important; }
.bg-white { background: #fff !important; color: #244259 !important; }
.bg-light { background: #F5F3FA !important; }

/* Responsive Tweaks */
@media (max-width: 700px) {
  .footer-columns { flex-direction: column; gap: 16px; }
  .service-highlights, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .testimonial-row,
  .articles-preview-list {
    flex-direction: column;
    gap: 12px;
  }
  .hero, .cta {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.22rem; }
  .section, section { padding: 20px 2px; }
  .footer-columns { flex-direction: column; gap: 12px; }
}

/* Misc */
a[aria-label]:hover::after {
  content: attr(aria-label);
  font-size: 0.81rem;
  background: #244259;
  color: #FFD600;
  border-radius: 7px;
  padding: 3px 8px;
  margin-left: 5px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-53%);
  white-space: nowrap;
  z-index: 99;
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 8px; background: #F5F3FA; }
::-webkit-scrollbar-thumb { background: #FFD600; border-radius: 6px; }

/* Hide outline except for keyboard users */
:focus:not(:focus-visible) {
  outline: none !important;
}

/* Decorative Gold Accent Borders on Premium Elements */
.card, .feature, .service-card, .article-preview, .testimonial-card {
  border-bottom: 3px solid #FFD60041;
}
.card:hover, .feature:hover, .service-card:hover,
.article-preview:hover, .testimonial-card:hover {
  border-bottom: 3px solid #FFD600;
}

/* Accessibility Fix: High contrast for testimonials */
.testimonial-card, .testimonial-card p, .testi-name {
  background: #F5F3FA;
  color: #243140;
  font-weight: 500;
}

/* Print Styling (minimal) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, section, .container, .content-wrapper { all: unset; display: block; }
}
