/* ===== CSS RESET & NORMALIZATION ===== */
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, menu, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F4F9FB;
  color: #222;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
button { background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 12px 16px; }

/* ======= LUXURY PREMIUM BRAND STYLES ======= */
:root {
  --brand-primary: #1A2236;
  --brand-secondary: #4BC9B2;
  --brand-accent: #F4F9FB;
  --luxury-gold: #B0985A;
  --luxury-gold-light: #F5EAC3;
  --shadow-color: rgba(26, 34, 54, 0.08);
  --border-color: #e0e4ec;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--brand-accent);
  color: var(--brand-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
}
h1 { font-size: 2.75rem; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.25; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
p, ul, ol, dl, li, dd, dt { font-size: 1rem; line-height: 1.7; margin-bottom: 14px; color: #20242E; }
strong { font-weight: 700; }
small { font-size: 0.95em; color: #6B6D7C; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= HEADER & NAVIGATION ======= */
header {
  background: #fff;
  box-shadow: 0 3px 20px -8px var(--shadow-color);
  position: relative;
  z-index: 10;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav > a img { height: 44px; }
nav ul {
  display: flex;
  gap: 24px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .2s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: var(--luxury-gold-light);
  color: var(--luxury-gold);
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 2px 10px 0 var(--shadow-color);
  margin-left: 24px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 32px;
  background: linear-gradient(90deg, var(--luxury-gold) 10%, transparent 90%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--luxury-gold);
  color: var(--brand-primary);
  box-shadow: 0 6px 32px -2px var(--shadow-color);
}
.btn-primary:hover::after,
.btn-primary:focus::after {
  opacity: 0.14;
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: var(--luxury-gold);
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 16px;
  margin-left: auto;
  z-index: 52;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--luxury-gold);
  color: var(--brand-primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,34,54,0.97);
  z-index: 120;
  padding: 32px 22px 18px 22px;
  transition: transform 0.43s cubic-bezier(.84,.03,.37,1), opacity 0.2s;
  transform: translateX(-100%);
}
.mobile-menu.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  display: block;
  font-size: 2rem;
  background: var(--luxury-gold);
  color: var(--brand-primary);
  border-radius: 8px;
  padding: 7px 16px;
  position: absolute;
  right: 30px;
  top: 22px;
  z-index: 2;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #fff0d9; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 70px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color .2s, border-color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--luxury-gold);
  border-bottom: 2px solid var(--luxury-gold);
}

/* ===== HERO SECTION & SECTION UTILITY ===== */
main {
  margin-top: 0;
}
.section,
.hero, .about, .services, .faqs, .features, .cta, .legal,
.confirmation, .contact, .steps, .testimonials, .pricing {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: #fff;
  border-bottom: 4px solid var(--luxury-gold-light);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 0 30px 0;
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, var(--brand-primary) 60%, var(--luxury-gold) 120%);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section h2, .about h1, .features h2, .services h2,
.cta h2, .confirmation h1, .contact h2, .pricing h1, .testimonials h2 {
  position: relative;
  padding-left: 3px;
  padding-bottom: 8px;
}
.section h2::before, .services h2::before, .features h2::before,
.cta h2::before, .testimonials h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--luxury-gold);
  border-radius: 2px;
  margin-bottom: 12px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ======= FLEX LAYOUT CLASSES ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 22px -6px var(--shadow-color);
  padding: 32px 24px;
  margin-bottom: 20px;  /* minimum 20px apart */
  position: relative;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  border-color: var(--luxury-gold);
  box-shadow: 0 7px 32px -3px var(--shadow-color);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px -4px var(--shadow-color);
  padding: 20px 28px;
  max-width: 420px;
  margin-bottom: 20px;
  border-left: 5px solid var(--luxury-gold);
  position: relative;
  color: #282C37;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 8px 32px -3px var(--shadow-color);
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #20242E;
}
.testimonial-card span {
  font-size: 0.98em;
  color: var(--brand-primary);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px -6px var(--shadow-color);
  padding: 28px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  border-left: 3px solid var(--luxury-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .16s, border-color .18s;
}
.features .feature-grid > div:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 8px 32px -3px var(--shadow-color);
}
.features .feature-grid img {
  height: 40px; width: 40px; margin-bottom: 20px;
}

/* Service Cards */
.services .service-cards,
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.services .service-cards > div,
.services .service-list > div {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 14px -5px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .14s, border-color .14s;
}
.services .service-cards > div:hover,
.services .service-list > div:hover {
  border-color: var(--luxury-gold);
  box-shadow: 0 7px 22px -2px var(--shadow-color);
}
.services .service-cards span, .services .service-list span {
  color: var(--luxury-gold);
  font-weight: 700;
  margin-bottom: 11px;
}
.services .service-cards a, .services .service-list a {
  color: var(--brand-secondary);
  font-weight: 500;
  font-size: 1rem;
  align-self: flex-start;
  margin-top: 10px;
  transition: color .2s;
}
.services .service-cards a:hover,
.services .service-list a:hover {
  color: var(--luxury-gold);
  text-decoration: underline;
}

/* CTA Section */
.cta {
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 22px -6px var(--shadow-color);
  text-align: center;
}
.cta .btn-primary {
  margin-top: 22px;
  background: var(--luxury-gold);
  color: var(--brand-primary);
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* Content Cards & Tables */
.pricing table {
  width: 100%;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 16px -7px var(--shadow-color);
  margin-bottom: 24px;
  overflow: hidden;
}
.pricing thead {
  background: var(--luxury-gold-light);
}
.pricing tbody tr:nth-child(even) {
  background: #f7f7fa;
}
.pricing th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 1.09em;
  padding: 20px 16px 14px 16px;
}
.pricing td {
  color: var(--brand-primary);
  padding: 16px 16px 10px 16px;
}

/* FAQs and Lists */
.faqs dl { margin-top: 14px; }
.faqs dt {
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0px;
  margin-top: 20px;
}
.faqs dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #3A405C;
}
.faqs small {
  display: block;
  color: #a57c27;
  margin-top: 24px;
}
.features ul, .legal ul {
  margin-left: 21px;
  margin-bottom: 7px;
  color: #20242E;
}
.features ul li, .legal ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 21px;
}
.features ul li::before, .legal ul li::before {
  content: "•";
  position: absolute;
  left: 0; top: 0;
  color: var(--luxury-gold);
  font-weight: 900;
  font-size: 1.3em;
}

ol {
  counter-reset: luxuryCounter;
  list-style: none;
}
ol li {
  counter-increment: luxuryCounter;
  margin-bottom: 13px;
  position: relative;
  padding-left: 36px;
}
ol li::before {
  content: counter(luxuryCounter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--luxury-gold);
  font-weight: 700;
  font-size: 1.18em;
}

/* Confirmation/Thank you page */
.confirmation {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px -5px var(--shadow-color);
  text-align: center;
  max-width: 600px;
  margin: 50px auto 80px auto;
  padding: 50px 38px;
}

/* Contact Info Blocks */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.05em;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: #353A4E;
}

/* Footer */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding-top: 54px;
  padding-bottom: 0px;
  box-shadow: 0 -2px 18px -3px var(--shadow-color);
  font-size: 1rem;
}
footer .container { padding: 0 20px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.footer-top a img { height: 38px; }
.footer-top ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-top ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  opacity: 0.85;
  transition: opacity .18s, color .2s;
}
.footer-top ul li a:hover,
.footer-top ul li a:focus {
  color: var(--luxury-gold);
  opacity: 1;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: 0.98em;
  padding-bottom: 16px;
}
.footer-bottom .contact-info span {
  margin-bottom: 5px;
  color: #E5E2D0;
}
.footer-copy {
  color: #CFC6A4;
  margin-top: 7px;
}

/* ===== Cookie Consent Banner & Modal ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--luxury-gold);
  box-shadow: 0 -2px 18px -9px var(--shadow-color);
  padding: 26px 16px 22px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2200;
  font-size: 1.05em;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.84,.03,.37,1), opacity 0.22s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p { margin-bottom: 0; color: #191b22; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btns button {
  min-width: 125px;
  border-radius: 26px;
  background: var(--luxury-gold);
  color: var(--brand-primary);
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  margin: 0;
  transition: background .19s, color .19s, box-shadow .15s;
  box-shadow: 0 2px 12px 0 var(--shadow-color);
}
.cookie-btns button:not(:first-child) {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--luxury-gold);
}
.cookie-btns button:hover,
.cookie-btns button:focus {
  background: var(--luxury-gold);
  color: var(--brand-primary);
  box-shadow: 0 6px 18px 0 var(--shadow-color);
}
.cookie-btns button:last-child:hover {
  background: var(--luxury-gold);
  color: var(--brand-primary);
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(0.8);
  opacity: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px -8px var(--shadow-color);
  padding: 44px 32px 32px 32px;
  min-width: 320px;
  max-width: 94vw;
  z-index: 2220;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.24s cubic-bezier(.84,.03,.37,1);
}
.cookie-modal.visible {
  opacity: 1;
  transform: translate(-50%, -52%) scale(1);
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.5em;
  margin-bottom: 16px;
}
.cookie-modal .cookie-categories {
  margin-bottom: 30px;
  display: flex;
  gap: 29px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f7f1;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid var(--luxury-gold-light);
  min-width: 212px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--luxury-gold);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-category.essential label::after {
  content: ' (wymagane)';
  color: #b19440;
  font-size: 0.95em;
}
.cookie-modal .cookie-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .cookie-footer button {
  border-radius: 22px;
  background: var(--luxury-gold);
  color: var(--brand-primary);
  font-weight: 600;
  border: none;
  padding: 10px 22px;
  font-size: 1em;
  margin: 0;
  transition: background .15s, color .2s, box-shadow .19s;
  box-shadow: 0 2px 11px 0 var(--shadow-color);
}
.cookie-modal .cookie-footer button:last-child {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--luxury-gold);
}
.cookie-modal .cookie-footer button:hover,
.cookie-modal .cookie-footer button:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* ===== Animations & Transitions ===== */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .cookie-btns button, .cookie-modal .cookie-footer button {
    transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  }
  .card, .features .feature-grid > div, .testimonials .testimonial-card {
    transition: box-shadow 0.18s, border-color 0.18s;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
  .features .feature-grid > div, .services .service-cards > div, .services .service-list > div {
    min-width: 170px;
    font-size: 0.98em;
  }
}
@media (max-width: 900px) {
  header nav ul { gap: 15px; }
  .footer-top ul { gap: 13px; }
  .content-wrapper { max-width: 100vw; }
}
@media (max-width: 768px) {
  nav { flex-direction: row; }
  nav ul {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .hero, .about, .services, .faqs, .features, .cta, .legal,
  .confirmation, .contact, .steps, .testimonials, .pricing {
    padding: 22px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper, .testimonials .content-wrapper {
    padding: 0 4px;
  }
  .hero .content-wrapper {
    padding: 24px 0 10px 0;
  }
  .features .feature-grid, .services .service-cards, .services .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .features .feature-grid > div,
  .services .service-cards > div, .services .service-list > div {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
  .cta {
    padding: 28px 8px;
    border-radius: 13px;
  }
  .footer-top {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-bottom: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.98em;
  }
  /* Mobile nav full screen */
  .mobile-menu {
    padding: 16px 7px 12px 7px;
  }
  .mobile-menu-close {
    right: 10px;
    top: 9px;
    font-size: 1.5rem;
    padding: 6px 13px;
  }
  .mobile-nav {
    margin-top: 44px;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 6px 12px 12px;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  h1{ font-size:1.5rem; }
  h2{ font-size:1.22rem; }
  h3{ font-size:1rem; }
  .hero h1{ font-size:1.22rem; }
  .card, .features .feature-grid > div, .testimonials .testimonial-card, .confirmation{
    padding: 16px 8px;
    border-radius: 11px;
  }
  .container { padding: 0 3px; }
}

/* ===== UTILITY CLASSES ===== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.gap-20 { gap: 20px; }
.text-center { text-align: center; }

/* ===== PRINTED FONTS & GOLD ACCENTS ===== */
.display-gold {
  color: var(--luxury-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.06rem;
  font-weight: 800;
}
.gold-underline {
  border-bottom: 3px solid var(--luxury-gold);
}

/* ===== Ensuring NO Overlapping & Flexbox Layouts ===== */
.card-container > *, .content-grid > *, .service-cards > *, .service-list > *, .testimonials-list > *.testimonial-card, .features .feature-grid > * {
  margin-bottom:0 !important;
}

/* Remove unwanted absolute positioning except for decorative elements */
.card > *, .feature-grid > *, .testimonial-card > * {
  position: static !important;
}

/* Hide scrollbar for modern look, keep accessible */
body::-webkit-scrollbar {width: 8px;background: #f9f6ed;}
body::-webkit-scrollbar-thumb {background: var(--luxury-gold-light);border-radius: 8px;}

/* ===== A11Y Focus Styles */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible {
  outline: 2px dashed var(--luxury-gold);
  outline-offset: 4px;
}

/* ===== Additional Micro-interactions ===== */
a, .btn-primary, button, .service-cards a, .service-list a {
  transition: color .15s, background .13s, box-shadow .16s, border .14s;
}

/* ===== Specific for testmonials readability ===== */
.testimonials .testimonial-card {
  background: #fff;
  color: #232836;
}

/* ===== Specific for legal and policy pages ===== */
.legal {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 3px 18px -7px var(--shadow-color);
  padding: 34px 18px 32px 18px;
  margin-bottom: 30px;
}

/* ===== END ===== */