/* ---------------------------------------------
   LUXURY PREMIUM / NEUGEBORENENBEGLEITER STYLE
   Complete responsive CSS (flexbox only)
   No CSS Grid / Columns used anywhere!
   --------------------------------------------- */

/* ---- 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,
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, main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F2F6F5;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B3A54;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* Webfonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ---- LUXURY PREMIUM COLOR PALETTE ---- */
:root {
  --primary: #1B3A54;
  --secondary: #5CB8B2;
  --accent: #F2F6F5;
  --gold: #d4af37;
  --gold-dark: #b99825;
  --heading: #222326;
  --body: #222;
  --muted: #637081;
  --white: #fff;
  --shadow: 0 2px 20px 0 rgba(27,58,84,0.10);
  --card-bg: #fff;
  --card-border: #ececec;
  --cta-gradient: linear-gradient(90deg, #d4af37 0%, #fbeec1 100%);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .subheadline {
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--body);
  margin-bottom: 16px;
}
.subheadline {
  color: var(--muted);
  font-size: 1.18rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.text-section {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

/* ---- CONTAINER & LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* ---- HEADER ---- */
header {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-bottom: 1px solid #e6e6ee;
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.brand-logo img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 10px;
  font-weight: 600;
  border-radius: 22px;
  transition: background .18s, color .18s;
}
nav a:hover, nav a.active {
  color: var(--gold);
  background: var(--accent);
}

.cta-btn {
  background: var(--gold);
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 20px 0 rgba(212,175,55,0.04);
  padding: 12px 36px;
  margin-left: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:active {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 4px 24px 0 rgba(212,175,55,0.14);
  text-decoration: none;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  display: none;
  padding: 8px 8px;
  z-index: 25;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: 0 4px 40px 0 rgba(27,58,84,0.20);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.55,.06,.48,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.3rem;
  padding: 24px 24px 8px 16px;
  align-self: flex-start;
  cursor: pointer;
  outline: none;
  z-index: 1010;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--gold); 
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 10px;
  border-radius: 32px;
  transition: background .16s, color 0.18s;
  background: none;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--gold);
  background: var(--accent);
}

@media (max-width: 1140px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1024px) {
  header .container {
    max-width: 100vw;
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 900px) {
  .container { padding-left: 0; padding-right: 0; }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 60px;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}

/* ---- MAIN SECTIONS ---- */
main {
  background: var(--accent);
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-section {
  background: var(--primary);
  color: var(--white);
  border-radius: 28px;
  box-shadow: 0 2px 20px 0 rgba(27,58,84,0.14);
  margin-bottom: 60px;
}
.cta-section h2, .cta-section p {
  color: var(--white);
}
.cta-section .cta-btn {
  background: var(--gold);
  color: var(--primary);
}

/* ---- FLEXBOX LAYOUT CLASSES ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(27,58,84,0.14);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: var(--accent);
  box-shadow: 0 1px 6px rgba(27,58,84,0.10);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 260px;
  border-left: 6px solid var(--gold);
  flex-direction: column;
}
.testimonial-card p {
  color: #191c1e;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: var(--muted);
  font-size: .98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(27,58,84,0.055);
  padding: 22px 16px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.13s;
}
.feature-item img {
  height: 44px;
  width: 44px;
  filter: grayscale(0.12) brightness(0.98) drop-shadow(1px 1px 0 #e8e3c5);
}
.feature-item h3 {
  margin-bottom: 4px;
}
.feature-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 22px 0 rgba(212,175,55,0.13);
}

.features-grid, .services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* ---- CARDS & TABLES ---- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 26px;
  background: var(--card-bg);
  box-shadow: 0 2px 12px rgba(27,58,84,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 18px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
.price-table th {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}
.price-table tr:last-child td {
  border-bottom: none;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px 18px 18px;
}
.service-comparison, .faq-pricing, .faq-accordion {
  margin-bottom: 18px;
}

/**** ACCORDION/FAQ ***/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 0;
}
.faq-row {
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(27,58,84,.07);
  padding: 16px 18px;
  margin-bottom: 12px;
  border-left: 5px solid var(--gold);
  transition: box-shadow 0.17s, border-color .14s;
}
.faq-row:hover {
  box-shadow: 0 2px 12px rgba(212,175,55,0.12);
  border-left-color: var(--gold-dark);
}

/**** Quick Links ***/
.quick-faq-links {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.quick-faq-links a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  transition: color .14s;text-underline-offset:2px;
}
.quick-faq-links a:hover { color: var(--gold-dark); }

/**** TABLE LISTS (used in preise.html) ***/
.faq-pricing ul, .service-comparison ul {
  margin-bottom: 8px;
}

/* ---- TIMELINE (ablauf) ---- */
.process-timeline ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.process-timeline li {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--primary);
  background: #faf9ef;
  border-left: 5px solid var(--gold);
  padding: 10px 16px;
  border-radius: 8px;
}

/**** FAQ Shortlist ***/
.faq-shortlist {
  margin-top: 20px;
  margin-bottom: 14px;
}
.faq-shortlist ul li {
  font-size: 1.04rem;
  color: var(--muted);
}

/**** CTA Buttons in Cards/Text ***/
.text-section .cta-btn,
.content-wrapper .cta-btn {
  margin-top: 18px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--primary);
  color: var(--white);
  margin-top: 60px;
  padding: 0;
}
.footer-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 26px 0;
  border-top: 1px solid #294059;
}
.brand-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.brand-info img {
  height: 52px;
  width: 52px;
}
.text-section {
  color: var(--white);
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-menu a {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-menu a:hover {
  color: #fff2cc;
}

/* ---- INTERACTIVE HOVERS ---- */
a, .cta-btn, .feature-item, .testimonial-card, .faq-row {
  transition: all 0.18s;
}
button:focus, a:focus, .cta-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- SHADOWS & ROUNDED CORNERS ---- */
.card, .feature-item, .testimonial-card, .faq-row, .faq-accordion, section, .price-table, .service-comparison {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.13rem; }
  section {
    margin-bottom: 34px;
    padding: 24px 0 28px 0;
    border-radius: 14px;
    gap: 12px;
  }
  .features-grid, .services-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 90vw;
    max-width: 100vw;
    padding: 14px 8px 18px 14px;
  }
  .card, .feature-item {
    min-width: 95vw;
    max-width: 100vw;
  }
  .footer-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0 8px 0;
  }
  .brand-info, .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .faq-row {
    padding: 12px 8px;
  }
  .brand-logo img { height: 36px !important; }
}

/* Ensure testimonial text is always clear/dark on light backgrounds */
.testimonial-card p, .testimonial-card span {
  color: #222 !important;
}

/**** Cookie Consent Banner & Modal ****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--card-bg);
  color: var(--primary);
  padding: 24px 14px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 24px rgba(27,58,84,0.17);
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  opacity: 1;
  transition: transform 0.25s, opacity 0.21s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1.06rem;
  line-height: 1.6;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
  outline: none;
}
.cookie-banner .cookie-accept {
  background: var(--gold);
  color: var(--primary);
  margin-right: 8px;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: var(--gold-dark);
  color: var(--white);
}
.cookie-banner .cookie-reject {
  background: #e5e5e5;
  color: var(--muted);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #f2ede2;
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: var(--gold);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--gold);
  color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 5px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Preference Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 41, 61, 0.49);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .22s;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: var(--card-bg);
  border-radius: 18px;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 48px rgba(27,58,84,0.15);
  max-width: 410px;
  min-width: 310px;
  padding: 34px 30px 23px 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookie-in 0.33s cubic-bezier(0.55,.06,.48,.96);
}
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-dialog h2 { margin-bottom: 8px; font-size: 1.18rem; color: var(--primary); font-weight: 700; }
.cookie-modal-dialog .modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-dialog .modal-close:hover {
  color: var(--gold-dark);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-cat-label {
  flex: 1 1 auto;
  font-weight: 600;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.cookie-checkbox {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e6e6e3;
  border-radius: 22px;
  position: relative;
  outline: none;
  box-shadow: 0 1px 3px rgba(27,58,84,0.10);
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-checkbox:checked {
  background: var(--gold);
}
.cookie-checkbox:checked:after {
  left: 20px;
}
.cookie-checkbox:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(27,58,84,0.07);
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.18s, background 0.15s;
}
.cookie-essential {
  color: var(--muted);
  font-size: .97rem;
  margin-left: 6px;
}
.cookie-modal-dialog .modal-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-dialog .cta-btn {
  padding: 10px 25px;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .cookie-modal-dialog {
    min-width: 92vw;
    padding: 19px 7vw 14px 7vw;
  }
}

/* ---- SCROLLBARS ---- */
::-webkit-scrollbar {
  width: 8px;
  background: #e4e8f1;
}
::-webkit-scrollbar-thumb {
  background: #bfb9a0;
  border-radius: 6px;
}

/* ---- MISC ---- */
hr {
  border: 0;
  border-top: 1px solid #e5e3d6;
  margin: 32px 0;
}
small, .muted {
  color: var(--muted);
}

/* Highlight Gold Text Effect */
.gold {
  color: var(--gold);
  font-weight: bold;
}

/* Subtle bounce/entrance animation for cards/cta */
@media (prefers-reduced-motion: no-preference) {
  .card, .testimonial-card, .feature-item, .faq-row, .cta-section {
    animation: fadeInUp 0.65s ease both;
  }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: none; }
}

/* ---- UTILITIES ---- */
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-32 { margin-top: 32px; }
.gap-20 { gap: 20px; }

/* ---- ENSURE NO OVERLAP, SPACING ---- */
.card-container > *, .content-grid > *, .features-grid > *, .services-list > *, .testimonials-row > *, .footer-area > *, .section > *, .faq-accordion > * {
  margin-bottom: 20px;
}
.card-container, .features-grid, .content-grid, .services-list, .footer-area, .testimonials-row {
  gap: 24px;
}

/**** 
  GOLD LUXURY ACCENTS: borders, markers, highlights
  ------------------------------------------------ 
****/
h1, h2, h3, h4 {
  border-left: 6px solid var(--gold);
  padding-left: 16px;
  background: none;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 18px;
}
h3 {
  border-left-width: 4px;
  padding-left: 10px;
  margin-bottom: 10px;
}

/**** Remove double spacing before last child ****/
.section > *:last-child,
.content-wrapper > *:last-child {
  margin-bottom: 0 !important;
}

/* (Prevents content overlap on small screens) */
@media (max-width: 480px) {
  .testimonial-card,
  .card, .feature-item {
    min-width: 99vw;
    max-width: 99vw;
    padding-left: 5px;
    padding-right: 5px;
  }
}
