/* =============================================================
   BecaRifle Wasserlieferung – Professional Corporate Style CSS
   Author: Senior CSS Developer & UI Designer
   ============================================================= */

/* -------------------------
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #23303b;
  background: #F5F5F5;
  line-height: 1.7;
}

*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #18587A;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #61A5C2;
  outline: none;
}
ul, ol {
  list-style-type: disc;
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}

/* Typography hierarchy */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #18587A;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #18587A;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #18587A;
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #23303b;
  margin-bottom: 10px;
}
p, li, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.subheadline {
  color: #3D4853;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

/* ----- General Containers ----- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 48, 59, 0.06);
}

/* ----------- HEADER ----------- */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(24, 88, 122, 0.06);
  padding: 0;
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header a img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus:not(.btn-primary) {
  background: #eceff3;
  color: #18587A;
}
.btn-primary {
  background: #18587A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 28px;
  box-shadow: 0 1px 4px rgba(24, 88, 122, 0.09);
  border: none;
  transition: background 0.2s, box-shadow 0.15s, transform 0.14s;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #61A5C2;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px rgba(24, 88, 122, 0.12);
}
/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #18587A;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 120;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e7eef3;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,88,122,0.97);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.44,0.12,0.30,1.0);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 34px;
  padding-left: 0;
  gap: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.0rem;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 2010;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  padding: 16px 0 8px 0;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #61A5C2;
}

/* ----------------- HERO ----------------- */
.hero {
  background: linear-gradient(95deg, #f5fafd 65%, #e9f1f7 100%);
  padding: 68px 0 70px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(24,88,122,0.06);
}
.hero .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.15rem;
}

/* ---------- FEATURES ---------- */
.features, .feature-grid {
  width: 100%;
}
.features h2 {
  margin-bottom: 32px;
  font-size: 2rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  background: #F5F5F5;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(24,88,122,0.04);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 220px;
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.19s, transform 0.16s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  height: 36px;
  width: 36px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.feature p {
  color: #425567;
  font-size: 1rem;
}
.feature:hover {
  box-shadow: 0 8px 22px rgba(24,88,122,0.14);
  transform: translateY(-3px) scale(1.025);
  background: #eceff3;
}

/* ----- CTA ----- */
.cta {
  margin-bottom: 60px;
  padding: 44px 22px;
  background: #18587A;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(24,88,122,0.10);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta p {
  color: #e3eef7;
  margin-bottom: 28px;
}
.cta .btn-primary {
  background: #fff;
  color: #18587A;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #61A5C2;
  color: #fff;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  padding: 44px 0 52px 0;
}
.testimonials h2 {
  margin-bottom: 32px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(35,48,59,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid #61A5C2;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.testimonial-card p {
  color: #23303b;
  font-size: 1.12rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #18587A;
  font-weight: 500;
  margin-top: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(24,88,122,0.17);
  border-left: 6px solid #18587A;
}

/* ------------ Team Section -------------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.team-member {
  background: #f5f5f5;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,88,122,0.08);
  flex: 1 1 220px;
  max-width: 220px;
  min-width: 200px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, background 0.18s;
}
.team-member img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.team-member h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
  color: #18587A;
}
.team-member:hover {
  background: #e3eef7;
  box-shadow: 0 8px 20px rgba(24,88,122,0.13);
}

/* ------------ Pricing Table -------------- */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f5fafd;
  border-radius: 10px;
  padding: 16px 20px;
  gap: 20px;
  margin-bottom: 10px;
}
.pricing-name {
  flex: 1 1 38%;
  color: #18587A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-value {
  flex: 1 1 32%;
  color: #23303b;
  font-weight: 600;
  font-size: 1.1rem;
}
.pricing-desc {
  flex: 1 1 30%;
  color: #425567;
  font-size: 1rem;
  font-weight: 400;
}

/* ------------ FAQ Accordion -------------- */
.faq-search {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.faq-search input {
  flex: 1 1 220px;
  border: 1px solid #cfd7de;
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 1rem;
  transition: border 0.17s;
}
.faq-search input:focus {
  border: 1.5px solid #18587A;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(24,88,122,0.08);
  padding: 18px 22px;
  transition: box-shadow .2s;
  margin-bottom: 10px;
  position: relative;
}
.faq-item h2 {
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #18587A;
  cursor: pointer;
  margin-bottom: 9px;
}
.faq-answer {
  font-size: 1rem;
  color: #425567;
  max-height: 9999px;
  opacity: 1;
  transition: max-height 0.3s, opacity 0.3s;
}
.faq-item.closed .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.faq-item.open {
  box-shadow: 0 6px 16px rgba(24,88,122,0.13);
}

/* ------------ Steps (Services) -------------- */
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.step {
  background: #f5fafd;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(24,88,122,0.06);
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 260px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .16s, background .17s;
  position: relative;
}
.step img {
  height: 32px;
  width: 32px;
  margin-bottom: 6px;
}
.step:hover {
  background: #e3eef7;
  box-shadow: 0 10px 18px rgba(24,88,122,0.11);
}

/* ------------ USP List -------------- */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.usp-list li {
  display: flex;
  align-items: center;
  background: #f5fafd;
  border-radius: 9px;
  margin-bottom: 10px;
  padding: 10px 18px 10px 12px;
  color: #18587A;
  font-weight: 600;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}
.usp-list li img {
  height: 22px;
  width: 22px;
}

/* ---------- Contact & Map Section ---------- */
.text-section ul {
  margin-bottom: 18px;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #23303b;
  margin-bottom: 9px;
}
.text-section ul li a {
  color: #18587A;
  text-decoration: underline;
}
.text-section ul li img {
  height: 20px;
  width: 20px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #eceff3;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 6px rgba(24,88,122,0.09);
}

/* ---------- Footer ---------- */
footer {
  background: #18587A;
  color: #fff;
  padding: 28px 0 0 0;
  margin-top: 80px;
  border-radius: 32px 32px 0 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 34px 0 34px 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #efeef5;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #61A5C2;
}
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: #f5fefd;
}
.contact-row img {
  height: 20px;
  width: 20px;
  filter: brightness(8.5);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.social-links a img {
  height: 26px;
  width: 26px;
  filter: grayscale(0) brightness(19);
  opacity: 0.8;
  transition: opacity 0.18s;
}
.social-links a:hover img {
  opacity: 1;
}

/* ---------- Thank You Page ---------- */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(24,88,122,0.09);
  margin-top: 48px;
  margin-bottom: 60px;
}

/* -------------------------------------
   Cookie Consent Banner & Modal
-------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23303b;
  color: #fff;
  z-index: 4000;
  box-shadow: 0 -1px 14px rgba(24,88,122,0.13);
  padding: 21px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.8,.72,.65,1.0);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner__text {
  flex: 1 1 60%;
  color: #e8f3fc;
  margin-right: 10px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 5px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-btn.accept {
  background: #61A5C2;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #18587A;
}
.cookie-btn.reject {
  background: #fff;
  color: #18587A;
  border: 1px solid #18587A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #eceff3;
}
.cookie-btn.settings {
  background: #fff;
  color: #18587A;
  border: 1px solid #cfd7de;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e3eef7;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,48,59,0.63);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .25s, opacity 0.25s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #23303b;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(24,88,122,0.23);
  min-width: 320px;
  max-width: 94vw;
  padding: 34px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #18587A;
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.cookie-preference {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-preference label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #18587A;
}
.cookie-modal .toggle-switch {
  width: 36px;
  height: 20px;
  background: #eceff3;
  border-radius: 13px;
  position: relative;
  margin-right: 9px;
  cursor: pointer;
  transition: background 0.21s;
  display: inline-block;
}
.cookie-modal .toggle-switch[data-checked="true"] {
  background: #61A5C2;
}
.cookie-modal .toggle-switch .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal .toggle-switch[data-checked="true"] .slider {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #23303b;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity .17s;
}
.cookie-modal-close:hover { opacity: 1; }

/* ------------------ Utility Classes ------------------ */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.pt-60 { padding-top: 60px; }

/* ------------------ Responsive Design ------------------ */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding-left: 15px;
    padding-right: 15px;
  }
  .feature-grid, .team-grid, .usp-list, .steps-list, .testimonials .content-wrapper {
    gap: 18px;
  }
  .footer-wrapper {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .main-nav {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .hero {
    padding: 44px 10px 48px 10px;
    margin-bottom: 24px;
    border-radius: 0 0 20px 20px;
  }
  .features {
    padding: 32px 9px;
    margin-bottom: 44px;
  }
  .feature-grid, .team-grid, .usp-list, .steps-list, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .feature, .team-member, .testimonial-card, .step, .usp-list li {
    max-width: 100%;
    min-width: 0;
    padding: 18px 13px;
  }
  .cta { padding: 24px 11px; margin-bottom: 44px; border-radius: 11px; }
  .section { padding: 22px 8px; margin-bottom: 36px; border-radius: 10px; }
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 8px;
  }
  .map-placeholder { padding: 14px 10px; border-radius: 8px; }
  .footer-wrapper {
    flex-direction: column;
    gap: 21px;
    padding: 16px 0 16px 0;
  }
  .contact-information {
    gap: 7px;
  }
  .social-links { margin-top: 7px; }
  .thank-you { margin-top: 30px; margin-bottom: 36px; border-radius: 8px; }
}

@media (max-width: 600px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px;
  }
  .container { min-width: 0; }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
  .cookie-modal { min-width: 90vw; padding: 20px 11px; border-radius: 10px; }
  .cookie-modal .cookie-modal-actions { flex-direction: column; gap: 8px; }
}

/* Hide mobile menu nav on desktop */
@media (min-width: 601px) {
  .mobile-menu { display: none !important; }
}

/* --- Micro-interactions & Focus Styles --- */
.btn-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #61A5C2;
  outline-offset: 2px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #18587A;
  outline-offset: 2px;
}

/* --- Card Hover Lift --- */
.card, .feature, .testimonial-card, .team-member {
  transition: box-shadow 0.18s, transform 0.13s, background 0.16s;
}
.card:hover, .feature:hover, .testimonial-card:hover, .team-member:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 24px rgba(24,88,122,0.15);
}

/* --- Table Style Normalization --- */
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 10px; border-bottom: 1px solid #eceff3; }
thead th {
  background: #61A5C2;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

/* --- Miscellaneous --- */
::-webkit-input-placeholder { color: #9aa5b3; opacity: 1; }
::-moz-placeholder { color: #9aa5b3; opacity:1; }
:-ms-input-placeholder { color: #9aa5b3; opacity:1; }
::placeholder { color: #9aa5b3; opacity:1; }

/* --- Print Styles --- */
@media print {
  body { background: #fff; color: #000; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* ----------------------------------------------
   Mandatory Flexbox Layout Patterns (No Grid!)
-----------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(24,88,122,0.08);
  flex: 1 1 280px;
}
.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: 20px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure all sections/cards min 20px margin between */
.section, .card, .feature, .testimonial-card, .team-member, .step, .usp-list li {
  margin-bottom: 20px;
}

/* --------------------------------------
   END OF CSS
--------------------------------------- */
