/* ========================================================
   RESET & BASE STYLES
======================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F5F7FA;
  color: #14324D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #14324D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F5A623;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
strong {
  font-weight: 600;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  text-align: left;
  padding: 12px 10px;
}
th {
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
td {
  background: #fff;
  color: #14324D;
  font-size: 1rem;
}
tr:nth-child(even) td {
  background: #F9F3ED;
}
/* ========================================================
   TYPOGRAPHY
======================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #14324D;
  font-weight: 800;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.14;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 18px;
  font-size: 1.125rem;
  color: #384d64;
}
.section h2,
.section h3 {
  color: #14324D;
}
.text-section ul {
  margin-top: 12px;
}
.text-section li {
  margin-bottom: 12px;
  font-size: 1rem;
  list-style: disc inside;
  color: #14324D;
}
/* ========================================================
   CONTAINER & STRUCTURE
======================================================== */
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 850px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* For sections with colored backgrounds */
.section.bg-accent { background: #FFF8F3; }
.section.bg-primary { background: #14324D; color: #fff; }
.section.bg-secondary { background: #F5F7FA; }

/* ========================================================
   HEADER & NAVIGATION
======================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(20,50,77,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
header .container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img[alt="ProStMembr Fahrzeugpflege"] {
  height: 48px;
  width: auto;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.042rem;
  color: #14324D;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F5A62333;
  color: #F5A623;
}
.cta-btn {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(245,166,35,0.12), 0 1.5px 6px #F5A6231c;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d48a16;
  color: #fff;
  box-shadow: 0 2px 24px #F5A62333, 0 1.5px 8px #F5A6231a;
}
button.mobile-menu-toggle {
  display: none;
  background: #fff;
  font-size: 2rem;
  color: #14324D;
  border-radius: 12px;
  padding: 6px 14px;
  box-shadow: 0 2px 10px rgba(20,50,77,0.09);
  transition: background 0.18s, color 0.18s;
}
button.mobile-menu-toggle:focus {
  background: #FFF8F3;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.79,0,.22,1);
  box-shadow: -8px 0 20px #14324D26;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-left: 0;
  padding-right: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F5A623;
  font-size: 2.2rem;
  margin: 0 26px 30px 0;
  border-radius: 12px;
  padding: 4px 12px 4px 10px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFF8F3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 40px;
  padding-bottom: 20px;
}
.mobile-nav a {
  color: #14324D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF8F3;
  color: #F5A623;
}

@media (max-width: 1020px) {
  header .container {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 860px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-right: 12px;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}
/* Mobile adjustments for header spacing */
@media (max-width:600px) {
  header .container {
    min-height: 62px;
    padding-top: 0;
  }
  header img[alt="ProStMembr Fahrzeugpflege"] {
    height: 36px;
  }
}
/* ========================================================
   HERO SECTIONS
======================================================== */
.hero {
  padding: 56px 0 36px 0;
  background: #FFF8F3;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 32px #F5A62318;
  margin-bottom: 30px;
}
.hero .container {
  padding-top: 0;
  padding-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  color: #14324D;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.hero .cta-btn {
  margin-top: 12px;
}

.hero-about, .hero-leistungen, .hero-preise, .hero-galerie, .hero-kontakt, .hero-thankyou {
  background: #FFEEDD;
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 16px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
/* ========================================================
   FLEXBOX CONTAINER PATTERNS
======================================================== */
/* Card container (for gallery, services, etc.) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #14324D0f, 0 2px 10px #F5A62315;
  padding: 25px 22px 25px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px #F5A62322;
  transform: translateY(-4px) scale(1.02);
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  min-width: 240px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px #14324D14, 0 3px 12px #F5A6230e;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.20s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 32px #F5A62325;
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.135rem;
  color: #14324D;
  text-align: center;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #F5A623;
  font-size: 1rem;
}
/* Ensure good color contrast in testimonials */
.testimonials-home .testimonial-card,
.testimonials-gallery .testimonial-card {
  background: #fff;
  color: #14324D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px #F5A62312;
  padding: 18px 16px;
  margin-bottom: 16px;
  transition: box-shadow 0.15s;
}
.feature-item:hover {
  box-shadow: 0 6px 20px #F5A62316;
}
/* Feature/Grid/Service list patterns */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.feature-grid li, .service-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px #14324D0a;
  padding: 18px 13px 20px 13px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.feature-grid li img, .service-list li img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-grid li strong, .service-list li strong {
  color: #14324D;
  font-size: 1.12rem;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 24px #F5A6231e;
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 950px) {
  .feature-grid li, .service-list li {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
}
/* ========================================================
   PRICING TABLE
======================================================== */
.pricing-table {
  box-shadow: 0 3px 18px #F5A6230e;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #fff;
}
.pricing-table th {
  background: #F5A623;
  color: #fff;
  border: none;
}
.pricing-table td {
  background: #fff;
  border-bottom: 1px solid #F5F7FA;
  color: #14324D;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #FFF6EA;
}
.service-inclusions {
  background: #FFF8F3;
  border-radius: 13px;
  padding: 15px 20px;
  margin-top: 6px;
}
.service-inclusions h3 {
  margin-bottom: 7px;
  color: #14324D;
}
.service-inclusions ul {
  margin-bottom: 0;
}
.service-inclusions li {
  font-size: 1rem;
  color: #384d64;
}

/* ========================================================
   FOOTER
======================================================== */
footer {
  background: #14324D;
  color: #F5F7FA;
  padding: 35px 0 12px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 20px #14324D16;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 3px 9px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: #F5A62322;
  color: #F5F7FA;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-info img {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
}
.copyright {
  color: #c6d4e1;
  font-size: 0.97rem;
  margin-top: 10px;
}
@media (max-width: 760px) {
  footer .container {
    gap: 14px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  footer {
    border-radius: 22px 22px 0 0;
    padding: 22px 0 10px 0;
  }
}
/* ========================================================
   COOKIE CONSENT BANNER & MODAL
======================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2001;
  background: #fff;
  color: #14324D;
  box-shadow: 0 -4px 18px #F5A62321;
  padding: 18px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-radius: 18px 18px 0 0;
  font-size: 1.02rem;
  animation: cookieDropIn 0.85s cubic-bezier(.76,0,.31,1) 1;
}
@keyframes cookieDropIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  70% {
    transform: translateY(-30px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner .cookie-btn {
  margin-left: 16px;
  margin-right: 4px;
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border-radius: 16px;
  padding: 8px 18px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1.5px 5px #F5A6232a;
  transition: background 0.2s, box-shadow 0.20s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #d48a16;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #fff;
  color: #F5A623;
  border: 1px solid #F5A623;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #FFF8F3;
  color: #d48a16;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #14324D;
  color: #fff;
  margin-left: 0;
  margin-right: 0;
}
.cookie-banner .cookie-btn.cookie-reject:hover {
  background: #222e39;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 12px 10px;
    text-align: center;
  }
  .cookie-banner .cookie-btn {
    margin: 5px 0 0 0;
    width: min(230px, 90vw);
  }
}
/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20, 50, 77, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width: 98vw;
  padding: 36px 22px 22px 22px;
  box-shadow: 0 12px 48px #14324D2a, 0 2px 10px #F5A62312;
  color: #14324D;
  position: relative;
  animation: fadeInScale 0.38s cubic-bezier(.71,0,.35,1) 1;
}
@keyframes fadeInScale {
  0% { transform: scale(0.86); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: #14324D;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal label {
  font-size: 1.08rem;
  color: #384d64;
  font-weight: 500;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #F5A62333;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F5A623cc;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #14324D18;
  transition: transform 0.22s cubic-bezier(.62,0,.16,1);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: #F5A623;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 22px;
  border-radius: 16px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal .cookie-btn.accept {
  background: #F5A623;
  color: #fff;
}
.cookie-modal .cookie-btn.accept:hover {
  background: #d48a16;
}
.cookie-modal .cookie-btn.reject {
  background: #14324D;
  color: #fff;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #263344;
}
.cookie-modal .cookie-btn.settings {
  background: #fff;
  color: #F5A623;
  border: 1px solid #F5A623;
}
.cookie-modal .cookie-btn.settings:hover {
  background: #FFF8F3;
  color: #d48a16;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  right: 16px;
  top: 8px;
  background: none;
  border: none;
  color: #14324D;
  font-size: 1.8rem;
  border-radius: 9px;
  padding: 5px 8px 3px 8px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-close-modal:hover {
  background: #F5A62320;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 5px 18px 5px;
    max-width: 99vw;
  }
  .cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
}
/* ========================================================
   CTA SECTION
======================================================== */
.cta {
  background: #F5A623;
  border-radius: 23px;
  color: #fff;
  margin-bottom: 60px;
  padding: 30px 6px;
  box-shadow: 0 6px 22px #F5A6230d;
}
.cta .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta p {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta .cta-btn {
  background: #fff;
  color: #F5A623;
  font-weight: 800;
  border-radius: 23px;
  box-shadow: 0 1.5px 16px #fff7;
  padding: 12px 28px;
  font-size: 1.09rem;
  margin-top: 10px;
  transition: color 0.17s, background 0.18s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #FFF6EA;
  color: #F5A623;
}
@media (max-width: 700px) {
  .cta .container {
    flex-direction: column;
    gap: 14px;
  }
  .cta {
    padding: 18px 1px 25px 1px;
    border-radius: 13px;
  }
}
/* ========================================================
   MISC. CLASS HELPERS
======================================================== */
.bg-accent {
  background: #FFF8F3 !important;
}
.bg-primary {
  background: #14324D !important;
  color: #fff !important;
}
.bg-secondary {
  background: #F5F7FA !important;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mt-8 { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center !important; }
.centered {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width:600px) {
  .section {
    padding: 22px 6px;
    margin-bottom: 36px;
  }
}

/* ========== OVERRIDES FOR POLICY PAGES =========== */
.footer-policy {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px #14324D08;
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 32px 18px;
}
.footer-policy h1 {
  font-size: 2rem;
  color: #14324D;
  margin-bottom: 18px;
}
.footer-policy h2 {
  font-size: 1.22rem;
  margin-bottom: 9px;
  color: #14324D;
}
.footer-policy ul {
  margin-bottom: 14px;
  margin-left: 20px;
  list-style: disc inside;
}
.footer-policy p, .footer-policy li {
  color: #384d64;
  font-size: 1rem;
  margin-bottom: 11px;
}
@media (max-width:600px) {
  .footer-policy {
    padding: 14px 2px;
    margin-top: 18px;
    margin-bottom: 16px;
    border-radius: 6px;
  }
}

/* ========== THANK YOU PAGE ========== */
.hero-thankyou {
  background: #FFF6EA;
}
section.next-steps .content-wrapper {
  background: #FFF8F3;
  border-radius: 14px;
  box-shadow: 0 4px 20px #F5A62309;
  padding: 24px 20px;
}

/* ========================================================
   RESPONSIVE ADJUSTMENTS
======================================================== */
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.24rem; }
  .feature-grid li, .service-list li {
    min-width: 0;
    padding: 14px 8px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}
/* Ensure no content overlapping and proper spacing everywhere */
/* End of style.css for ProStMembr Fahrzeugpflege */