/* ==== 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #222831;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}

/* Font family definitions */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm45_dJE3gnD_w.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxP.woff2) format('woff2');
}

/* ==== BRAND COLORS ==== */
:root {
  --primary: #1A237E;
  --secondary: #F5F5F5;
  --accent: #FFC107;
  --dark-bg: #21232b;
  --mid-bg: #343846;
  --card-bg: #292d36;
  --border: #40444e;
  --on-accent: #21232b;
  --metal: #979CA7;
  --shadow-dark: rgba(26, 35, 62, 0.18);
  --shadow-light: rgba(255,255,255,0.03);
  --button-hover: #232b5b;
  --danger: #C62828;
  --success: #2E7D32;
}

/* ==== LAYOUT UTILS ====*/
.container {
  width: 100%;
  max-width: 1200px;
  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;
}

/* === FLEXBOX PATTERNS - DO NOT EDIT === */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-shadow: 0 2px 8px var(--shadow-dark);
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
}
.hero .subheadline, .subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--secondary);
  opacity: 0.9;
}
p, li, label, th, td, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.7;
}
@media (max-width: 450px) {
  h1, .hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .subheadline { font-size: 1rem; }
}

/* ==== HEADER - NAV ==== */
header {
  width: 100%;
  background: var(--dark-bg);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header a img {
  height: 42px;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px var(--shadow-dark);
  border: none;
  outline: none;
  transition: background 0.15s, box-shadow 0.18s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #ffa000;
  color: var(--on-accent);
  box-shadow: 0 4px 16px var(--shadow-dark);
}
header nav a:hover, header nav a:focus {
  background: var(--primary);
  color: var(--accent);
}

/* === MOBILE BURGER === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0, 0.13);
  transition: background 0.2s, color 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--mid-bg);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--dark-bg);
  color: var(--secondary);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  z-index: 130;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.4rem;
  align-self: flex-end;
  margin-right: 32px;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--secondary);
  background: none;
  padding: 13px 32px;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
  width: 84vw;
  text-align: left;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--primary);
  color: var(--accent);
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(100deg, var(--dark-bg) 55%, var(--primary) 100%);
  padding: 60px 0 40px;
  box-shadow: 0 6px 24px -8px var(--shadow-dark);
}
.hero .container {
  min-height: 220px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 18px;
  }
  .hero .container {
    min-height: auto;
    padding-top: 0;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* ==== MAIN CONTENT ==== */
.features {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow-dark);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features h2 {
  color: var(--accent);
  text-shadow: 0 1px 4px var(--shadow-dark);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
  justify-content: left;
}
.features .feature-grid li {
  flex: 1 1 210px;
  min-width: 180px;
  background: var(--mid-bg);
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 2px 8px var(--shadow-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  transition: box-shadow 0.22s, transform 0.22s;
}
.features .feature-grid li:hover {
  box-shadow: 0 6px 22px var(--shadow-dark), 0 0 0 2px var(--accent);
  transform: translateY(-5px) scale(1.018);
}
.features .feature-grid img {
  width: 42px;
  height: 42px;
  filter: grayscale(40%) brightness(1.06);
}

.services-list-preview, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 16px 0;
}
.services-list-preview li,
.values-list li {
  background: var(--mid-bg);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.services-preview, .about-preview {
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px var(--shadow-dark);
  padding: 40px 20px;
}
.services-preview h2, .about-preview h2 {
  color: var(--accent);
}
.services-preview a, .about-preview a {
  margin-top: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.17s;
  position: relative;
}
.services-preview a:hover, .about-preview a:hover {
  color: #FFB300;
}

/* ==== TESTIMONIALS ==== */
.testimonials-preview, .testimonials {
  background: var(--mid-bg);
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--shadow-dark);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-preview h2, .testimonials h2 {
  color: var(--accent);
}
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 18px 0;
}
.testimonial-card {
  background: var(--secondary);
  color: #191b22;
  border-radius: 13px;
  padding: 28px 22px 24px 22px;
  box-shadow: 0 2px 10px var(--shadow-dark);
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--metal);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--shadow-dark), 0 0 0 2px var(--accent);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card p{
  color: #191b22;
}
.testimonial-author {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  color: var(--primary);
  font-weight: 600;
}
.stars {
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow: 0 1px 8px #ffe08270, 0 0px 1px #b09b59;
}

/* === CARDS & SECTIONS GENERAL === */
.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-dark);
  padding: 36px 22px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==== TABLES ==== */
.detailed-services-table, .pricing-table {
  width: 100%;
  border-spacing: 0;
  background: var(--mid-bg);
  border-radius: 11px;
  overflow: hidden;
  margin: 30px 0 20px 0;
  box-shadow: 0 2px 8px var(--shadow-dark);
  border: 1px solid var(--border);
}
.detailed-services-table th, .pricing-table th {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  padding: 13px 8px;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--accent);
}
.detailed-services-table td, .pricing-table td {
  color: var(--secondary);
  font-size: 0.99rem;
  padding: 11px 7px;
  border-bottom: 1px solid var(--border);
  background: var(--mid-bg);
}
.detailed-services-table tr:last-child td,
.pricing-table tr:last-child td {
  border-bottom: none;
}
.detailed-services-table tbody tr:hover, .pricing-table tbody tr:hover {
  background: var(--primary);
  color: var(--accent) !important;
  transition: background 0.19s, color 0.1s;
}
.detailed-services-table tbody td, .pricing-table tbody td {
  transition: background 0.18s;
}
@media (max-width: 680px) {
  .detailed-services-table, .pricing-table {
    font-size: 0.99rem;
    border-radius: 0;
  }
  .detailed-services-table th, .pricing-table th { padding: 7px 5px; }
  .detailed-services-table td, .pricing-table td { padding: 6px 4px; }
}

/* ==== FAQ & LEGAL ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0 10px 0;
}
.faq-item {
  background: var(--mid-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-dark);
  padding: 20px 16px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.faq-item:hover {
  box-shadow: 0 6px 16px var(--shadow-dark);
  transform: scale(1.012);
}
.legal {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 46px 24px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px var(--shadow-dark);
}

/* ==== CTA BUTTONS ==== */
.cta, a.cta, button.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  padding: 12px 32px;
  border-radius: 5px;
  box-shadow: 0 2px 16px var(--shadow-dark);
  text-shadow: 0 1px 2px var(--shadow-light);
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 10px;
  outline: none;
  transition: background 0.21s, box-shadow 0.15s, color 0.15s, transform 0.1s;
}
.cta:hover, .cta:focus {
  background: #FFB300;
  color: var(--on-accent);
  box-shadow: 0 4px 26px var(--shadow-dark);
  transform: translateY(-2px) scale(1.022);
}

/* ==== FOOTER ==== */
footer {
  background: var(--dark-bg);
  border-top: 2px solid var(--primary);
  color: var(--secondary);
  padding: 38px 0 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}
.footer-brand img {
  height: 30px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 0;
  border-left: 0 solid transparent;
  transition: color 0.16s, border-left 0.19s;
}
.footer-links a:focus, .footer-links a:hover {
  color: var(--secondary);
  border-left: 3px solid var(--accent);
  padding-left: 9px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  color: var(--metal);
}
.footer-contact img {
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-legal {
  font-size: 0.92rem;
  color: var(--metal);
  margin-top: 16px;
}
@media (max-width: 830px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px 0;
  }
}

/* ==== THANK YOU / CTA / MISC ==== */
.thank-you {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 2px 10px var(--shadow-dark);
  margin: 48px 0 60px 0;
  padding: 54px 22px;
  text-align: center;
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 990px) {
  .features .feature-grid, .testimonials-slider, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 860px) {
  .features .feature-grid, .testimonials-slider, .testimonial-list {
    flex-direction: column;
    gap: 10px;
  }
  .services-list-preview, .values-list {
    gap: 8px;
    flex-direction: column;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .testimonials-slider, .testimonial-list,
  .features .feature-grid, .values-list, .services-list-preview {
    flex-direction: column;
    gap: 14px;
  }
  .section, .features, .services-preview, .about-preview, .testimonials-preview, .testimonials, .legal {
    padding-left: 12px;
    padding-right: 12px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer .content-wrapper { gap: 18px 0; }
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--mid-bg);
  color: var(--secondary);
  box-shadow: 0 -3px 16px var(--shadow-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px 20px 18px;
  z-index: 9999;
  font-size: 1rem;
  border-top: 2px solid var(--accent);
  transition: transform 0.25s cubic-bezier(.7,0,.25,1);
  transform: translateY(0);
}
#cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-banner .cookie-message {
  flex: 1 1 0;
  margin-right: 12px;
  color: var(--secondary);
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 6px;
  padding: 9px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.11s, box-shadow 0.14s;
  box-shadow: 0 1px 5px var(--shadow-dark);
  letter-spacing: 0.01em;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFB300;
  color: var(--on-accent);
  box-shadow: 0 2px 9px var(--shadow-dark);
}
.cookie-settings-btn {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 9px 16px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.11s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent);
  color: var(--on-accent);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 10px 10px;
    font-size: 0.96rem;
    gap: 10px;
  }
  #cookie-banner .cookie-actions {
    justify-content: flex-end;
    width: 100%;
  }
}

/* === COOKIE MODAL === */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,22,30,0.88);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
  animation: fadeInModal 0.33s cubic-bezier(.5,0,.8,1.4);
}
@keyframes fadeInModal {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--mid-bg);
  border: 2.5px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 8px 38px var(--shadow-dark);
  color: var(--secondary);
  padding: 38px 24px 26px 24px;
  width: 95vw;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: contentPop 0.25s cubic-bezier(.5,0,.8,1.4);
}
@keyframes contentPop {
  0% { transform: scale(0.95); opacity: 0; }
  90% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-modal-content h2 {
  color: var(--accent);
  font-size: 1.23rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 0;
}
.cookie-modal-content .cookie-category label {
  font-weight: 500;
  color: var(--secondary);
}
.cookie-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal-content .switch input {display:none;}
.cookie-modal-content .slider {
  position: absolute;
  cursor: pointer;
  background: #545871;
  border-radius: 24px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.22s;
}
.cookie-modal-content .slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 5px rgba(0,0,0,0.12);
}
.cookie-modal-content .switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal-content .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-content .cookie-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ==== GENERAL INTERACTIVE STATES ==== */
button, .cta, .cookie-btn, .cookie-settings-btn {
  outline: none;
}
button:focus-visible, .cta:focus-visible, .cookie-btn:focus-visible, .cookie-settings-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--accent), 0 2px 10px var(--shadow-dark);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ==== UTILITY CLASSES ==== */
.hide { display: none !important; }
.text-center { text-align: center; }

/* ==== SPACING ENFORCEMENT ==== */
.section, .features,
.services-preview, .about-preview,
.testimonials-preview, .testimonials,
.legal, .thank-you, .faq-list, .faq-preview, .faq-item, .footer {
  margin-bottom: 60px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.content-grid,
.card-container,
.feature-grid,
.testimonials-slider,
.testimonial-list,
.values-list,
.services-list-preview {
  gap: 20px;
}

/* ==== PRINTING (OPTIONAL) ==== */
@media print {
  header, footer, #cookie-banner, #cookie-modal { display: none !important; }
  body { background: #fff; color: #1A237E; }
  .section, .card, .testimonials-preview, .testimonials, .features,
  .about-preview, .services-preview, .legal {
    background: #fff !important;
    color: #21232b !important;
    box-shadow: none !important;
    border: none !important;
  }
}
