/* ----------------------------------------------------------
  Triadron Sync Rechtsberatung – style.css
  Geometric & Structured – Responsive Flexbox Layout
---------------------------------------------------------- 
** CSS RESET & NORMALIZER **
---------------------------------------------------------- */
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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #183153;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  transition: background 0.3s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #36A1C5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183153;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* ----------------------------------------------------------
  Typography
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #183153;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.375rem; line-height: 1.2; margin-bottom: 14px; }
h4 { font-size: 1.125rem; line-height: 1.3; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; line-height: 1.4; }
p, ul, ol, li, blockquote {
  color: #22344E;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  border-left: 4px solid #36A1C5;
  background: #F8F8F8;
  padding: 18px 24px;
  font-style: italic;
  margin-bottom: 8px;
  border-radius: 0 20px 20px 0;
}
cite {
  display: block;
  font-size: 0.95rem;
  color: #22344E;
  margin-top: 4px;
}
.subheadline {
  font-size: 1.25rem;
  color: #36A1C5;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: #36A1C5;
}

/* ----------------------------------------------------------
  General Containers & Layouts
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8F8F8;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,49,83,.04);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* Spacing Helpers */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.gap-20 { gap: 20px !important; }

/* ----------------------------------------------------------
  Header & Navigation
---------------------------------------------------------- */
header {
  width: 100%;
  background: #183153;
  box-shadow: 0 2px 24px 0 rgba(24,49,83,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #F8F8F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  transition: color 0.18s;
  letter-spacing: 0.03em;
  border-radius: 6px;
  padding: 5px 10px;
}
header nav a:hover, header nav a:focus {
  background: #36A1C5;
  color: #fff;
}
header .btn-primary {
  margin-left: 10px;
  background: #36A1C5;
  color: #fff;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(54,161,197,.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #183153;
  color: #fff;
  box-shadow: 0 4px 18px rgba(54,161,197,.13);
}
header img {
  height: 46px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 22px;
  cursor: pointer;
  z-index: 215;
  border-radius: 10px;
  padding: 4px 12px;
  outline: none;
  transition: background 0.1s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #36A1C5;
}
@media (max-width: 1020px) {
  header nav {
    gap: 12px;
  }
  header img {
    height: 40px;
  }
}
@media (max-width: 880px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------------------
  Mobile Menu Overlay
---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83, 0.98);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.71,.12,.24,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0) !important;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #FFF;
  padding: 16px 28px 16px 0;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 12px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 90vw;
  max-width: 420px;
  margin: 0 0 0 28px;
}
.mobile-nav a {
  color: #F8F8F8;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  outline: none;
  letter-spacing: 0.048em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #36A1C5;
  color: #fff;
}
@media (min-width: 881px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------------------------------------------------
  Footer Styles
---------------------------------------------------------- */
footer {
  background: #183153;
  color: #F8F8F8;
  padding: 38px 0 22px 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
footer nav a {
  color: #F8F8F8;
  opacity: 0.85;
  transition: opacity 0.18s, color 0.18s;
  padding: 2px 6px;
  border-radius: 4px;
}
footer nav a:hover, footer nav a:focus {
  color: #36A1C5;
  background: #F8F8F8;
  opacity: 1;
}
footer .brand-info {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  gap: 12px;
  opacity: .9;
}
footer .brand-info img {
  height: 32px;
}
@media (max-width: 768px) {
  .footer-wrapper {
    align-items: flex-start;
    gap: 16px;
  }
  footer {
    padding: 24px 0 12px 0;
  }
  footer .brand-info img {
    height: 24px;
  }
}

/* ----------------------------------------------------------
  Buttons & Micro-interactions
---------------------------------------------------------- */
.btn-primary {
  background: #36A1C5;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  padding: 14px 32px;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 2px 12px 0 rgba(54,161,197,.17);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.21s, color 0.15s, transform 0.18s;
  letter-spacing: 0.036em;
  outline: none;
  display: inline-block;
  margin-top: 18px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #183153;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(54,161,197,0.22);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #FFF;
  color: #183153;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #36A1C5;
  padding: 11px 28px;
  border-radius: 10px 30px 10px 30px;
  box-shadow: 0 1px 6px 0 rgba(24,49,83,.07);
  cursor: pointer;
  transition: background 0.19s, color 0.13s, border-color 0.19s;
  outline: none;
  margin-top: 8px;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #36A1C5;
  color: #fff;
  border-color: #183153;
}

/* ----------------------------------------------------------
  Flex Layout Patterns & Section-Specific Styles
---------------------------------------------------------- */
/* Card container/flex layouts */
.card-container, .card-grid, .service-list, .features-list,
.team-preview, .team-profiles-list, .faq-list, .contact-short, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .card-container, .card-grid, .service-list,
  .features-list, .team-preview, .team-profiles-list, .faq-list, .contact-short, .contact-details {
    gap: 16px;
    flex-direction: column;
  }
}
.card, .service-card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(24,49,83,.09);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 240px;
  flex: 1 1 290px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 8px 26px 0 rgba(54,161,197,.13);
  transform: translateY(-2px) scale(1.012);
}
.features-list {
  width: 100%;
  gap: 26px;
}
.features-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(24,49,83,.08);
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 250px;
  margin-bottom: 20px;
}
.features-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
.features-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  color: #183153;
  margin-bottom: 2px;
}
.features-list span {
  color: #404C6F;
  font-size: 0.99rem;
}
.service-list {
  width: 100%;
  gap: 24px;
  align-items: stretch;
}
.service-card {
  border: 2.5px solid #36A1C5;
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 4px 16px 0 rgba(36,78,122,.08);
  padding: 29px 22px;
  transition: border-color 0.19s, box-shadow 0.21s;
  min-width: 220px;
}
.service-card h3 {
  color: #36A1C5;
  font-size: 1.22rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-card p {
  color: #183153;
  font-size: 1.01rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  background: #e5f4fa;
  color: #36A1C5;
  border-radius: 16px;
  padding: 12px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  gap: 12px;
}
.trust-badge img {
  height: 28px;
  width: 28px;
}

/* Timeline – Über uns */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 12px;
  border-left: 3px solid #36A1C5;
  padding-left: 20px;
}
.timeline li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183153;
  position: relative;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 15px;
  height: 15px;
  background: #36A1C5;
  border-radius: 40% 50% 49% 56%/55% 56% 46% 48%;
  box-shadow: 0 0 0 4px #F8F8F8;
  border: 2.5px solid #183153;
}

/* Team Preview (Über uns) + Profiles (Team) */
.team-preview, .team-profiles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.team-member, .team-profile {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px 40px 12px 12px;
  box-shadow: 0 2px 12px 0 rgba(54,161,197,.07);
  padding: 16px 22px;
  min-width: 200px;
  flex: 1 1 230px;
  gap: 16px;
  margin-bottom: 20px;
}
.team-member img, .team-profile img {
  width: 48px;
  height: 48px;
}
.team-member .bio, .team-profile div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.team-member strong, .team-profile strong {
  color: #183153;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.team-member span, .team-profile em {
  font-size: 0.99rem;
  color: #36A1C5;
}

/* Testimonial Card – Team page */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px 12px 30px 12px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(54,161,197,.06);
  margin-bottom: 24px;
  border-left: 6px solid #36A1C5;
}
.testimonial-card blockquote {
  background: none;
  padding: 0;
  margin-bottom: 0;
  border: none;
  font-style: italic;
  color: #183153;
  font-size: 1.04rem;
}
.testimonial-card cite {
  color: #22344E;
  font-size: 0.96rem;
  margin-top: 0;
}

/* FAQ styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #36A1C5;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(24,49,83,0.07);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq-item strong {
  display: block;
  color: #183153;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.faq-item div {
  color: #22344E;
  font-size: 1rem;
}

/* Contact Short/Details Blocks */
.contact-short, .contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-top: 10px;
}
.contact-short > div, .contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #22344E;
  background: #e5f4fa;
  border-radius: 8px;
  padding: 9px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-short a.btn-primary, .contact-details a.btn-primary {
  margin-top: 0;
}
.address-details {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #183153;
  margin-bottom: 12px;
}
/* Section Lists with Icon Bullets */
.section ul {
  margin-left: 0;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
  color: #22344E;
  background: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px 0 rgba(24,49,83,0.04);
}
.section ul li img {
  width: 28px; height: 28px;
}

/* ----------------------------------------------------------
  Responsive Adjustments
---------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
  .service-list, .team-profiles-list, .features-list, .card-container {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .service-card, .card, .team-profile, .team-member {
    min-width: 170px;
  }
  .service-list, .team-profiles-list, .features-list {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 675px) {
  .content-wrapper { padding-right: 0; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 18px; }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
}

/* ----------------------------------------------------------
  Cookie Consent Banner
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #F8F8F8;
  color: #183153;
  box-shadow: 0 -2px 18px 0 rgba(24,49,83,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 18px 20px 18px;
  z-index: 5100;
  font-size: 1.03rem;
  transition: transform 0.28s;
  border-radius: 18px 18px 0 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  animation: cookie-slidein 0.58s cubic-bezier(.87,.06,.51,1.01);
}
@keyframes cookie-slidein {
  from { transform: translateY(110%); opacity: 0.1; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 70%;
  color: #234;
  font-size: 1.07rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 17px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.14s;
}
.cookie-banner .btn-accept {
  background: #36A1C5;
  color: #fff;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #183153;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #183153;
  border: 2px solid #36A1C5;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #36A1C5;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #F8F8F8;
  color: #22344E;
  border: 2px solid #183153;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #183153;
  color: #fff;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 16px 8px 13px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 420px;
  background: #fff;
  border-radius: 24px 24px 14px 14px;
  box-shadow: 0 12px 40px 0 rgba(24,49,83,0.22);
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  padding: 36px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-fadein 0.43s cubic-bezier(.68,.75,.18,1.32);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; transform: translate(-50%, -58%) scale(.93); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal.hide {
  display: none;
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #183153;
}
.cookie-modal-category {
  margin-bottom: 14px;
}
.cookie-modal-category label {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 16px;
  background: #e5f4fa;
  position: relative;
  outline: none;
  margin-right: 9px;
  transition: background 0.18s;
}
.cookie-switch:checked {
  background: #36A1C5;
}
.cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 4px 0 rgba(24,49,83,0.06);
}
.cookie-switch:checked:before {
  left: 18px;
  background: #183153;
}
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 22px;
  border: none;
  color: #fff;
  background: #36A1C5;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal-buttons button.btn-cancel {
  background: #F8F8F8;
  color: #183153;
  border: 2px solid #36A1C5;
}
.cookie-modal-buttons button.btn-cancel:hover {
  background: #36A1C5;
  color: #fff;
}
.cookie-modal-buttons button.btn-save {
  background: #183153;
}
.cookie-modal-buttons button.btn-save:hover {
  background: #36A1C5;
}

/* ----------------------------------------------------------
  Form Elements (minimal as no forms)
---------------------------------------------------------- */
input, textarea, select {
  border: 1.5px solid #36A1C5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: inherit;
  outline: none;
  transition: border 0.18s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #183153;
  box-shadow: 0 2px 8px 0 rgba(24,49,83,0.07);
}

/* ----------------------------------------------------------
  Misc util
---------------------------------------------------------- */
::-webkit-input-placeholder { color: #a8b5c9; }
:-ms-input-placeholder { color: #a8b5c9; }
::placeholder { color: #a8b5c9; }

/* Visually hidden for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; 
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ----------------------------------------------------------
  Geometric Visual Accents
---------------------------------------------------------- */
/* Add geometric background effect only in large screen sections */
@media (min-width: 850px) {
.section {
  background-image: 
    linear-gradient(115deg,rgba(36,161,197,0.10) 3%,rgba(255,255,255,0.00) 78%),
    linear-gradient(-127deg,rgba(24,49,83,0.045) 16%,rgba(255,255,255,0.0) 80%);
  background-repeat: no-repeat;
}
}

/* ----------------------------------------------------------
  Visual Hierarchy and White Space
---------------------------------------------------------- */
.section > .container {
  padding: 0;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .section { margin-bottom: 22px; padding: 17px 5px; }
}

/* ----------------------------------------------------------
  Print & Selection
---------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
body ::selection {
  background: #36A1C5;
  color: #fff;
}

/* ----------------------------------------------------------
  ERROR PREVENTION: Prevent element overlap
---------------------------------------------------------- */
.section, .card, .service-card, .team-member, .team-profile, .testimonial-card, .faq-item {
  box-sizing: border-box;
}

/* ----------------------------------------------------------
  End of File
---------------------------------------------------------- */