/* =====================
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F5F6;
  color: #242A38;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

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

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #242A38;
  background: #F4F5F6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  color: #22436E;
  font-weight: 700;
  text-rendering: geometricPrecision;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }

p, li, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #36405A;
}
.blockquote, blockquote {
  font-style: italic;
  border-left: 4px solid #C33538;
  padding-left: 16px;
  margin-bottom: 10px;
  color: #22436E;
}
strong {
  font-weight: 700;
  color: #22436E;
}

.subheadline {
  font-size: 1.25rem;
  color: #22436E;
  letter-spacing: .03em;
  margin-bottom: 16px;
}

/* ===================
   STRUCTURE & LAYOUT
   =================== */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Shared Card/Section Flex Spacing */
.feature-grid,
.service-list,
.faq-list,
.download-links,
.testimonial-list,
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.content-grid { 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;
}

/* Geometric, Structured Design BASE */
/* Utilize blocky, angular, and crisp lines */
.section, .card, .feature, .service-card, .faq-item, .download-links li, .testimonial-card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,67,110,0.08);
  border: 1.5px solid #e2e6ee;
}

.feature, .service-card, .faq-item {
  padding: 28px 24px;
  flex: 1 1 224px;
  min-width: 260px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.feature:hover, .service-card:hover, .faq-item:hover {
  border-color: #C33538;
  box-shadow: 0 4px 18px rgba(195,53,56,0.11);
}

/* Responsive grid for feature/services */
@media (max-width: 998px) {
  .feature-grid, .service-list {
    gap: 20px;
  }
  .feature, .service-card {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .feature-grid, .service-list, .faq-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-card, .faq-item {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================
   HEADER & NAVBAR
   ================ */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(34,67,110,0.06);
  border-bottom: 2px solid #22436E11;
  z-index: 40;
  position: relative;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: #22436E;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  transition: color .18s, background .18s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #C33538;
}

.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #22436E;
  color: #fff;
  border-radius: 28px;
  padding: 11px 32px;
  font-size: 1rem;
  letter-spacing: .05em;
  border: none;
  box-shadow: 0 2px 8px rgba(34,67,110,0.08);
  transition: background .22s, color .22s, transform .1s;
  cursor: pointer;
  display: inline-block;
  margin-left: 16px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C33538;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #C33538;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #22436E;
  color: #FFF;
  transform: translateY(-2px) scale(1.025);
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #22436E;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 5px 13px;
  cursor: pointer;
  transition: background 0.22s, color 0.12s;
  z-index: 105;
  border: none;
  margin-left: 6px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #C33538;
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(0.4,0.14,0.3,1);
  box-shadow: -6px 0 24px rgba(34,67,110,0.18);
  padding: 0;
  width: 100vw;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #22436E;
  border: none;
  padding: 18px 24px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 30px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #22436E;
  border-radius: 8px;
  padding: 12px 0 12px 8px;
  transition: background .18s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C33538;
  color: #fff;
}

/* Responsive Navigation */
@media (max-width: 998px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  header .container {
    gap: 0;
  }
}
@media (min-width: 999px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   HERO BANNER
   =============== */
.hero {
  background: #22436E;
  color: #fff;
  padding: 60px 0 42px 0;
  min-height: 330px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 14px;
  margin-left: 0;
  background: #fff;
  color: #22436E;
}
.hero .btn-primary:hover {
  background: #C33538;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    min-height: 200px;
    padding: 36px 0 24px 0;
  }
  .hero h1 { font-size: 1.8rem; }
}

/* ========================
   FEATURES/ADVANTAGES GRIDS
   ======================== */
.features {
  margin-bottom: 54px;
  padding: 0;
  background: none;
}
.features .content-wrapper {
  gap: 16px;
}
.feature-grid {
  margin-top: 16px;
  width: 100%;
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}
.feature h3 { color: #22436E; font-size: 1.18rem; margin-bottom: 8px; }
.feature ul, .features ul {
  margin: 24px 0 0 16px;
  padding-left: 0;
}
.features ul li {
  list-style: disc inside;
  padding-left: 8px;
  color: #36405a;
  margin-bottom: 8px;
}

/* =================
   SERVICE CARDS
   ================= */
.service-list {
  margin-top: 20px;
}
.service-card {
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 14px;
  border: 1.5px solid #e2e6ee;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,67,110,0.07);
  padding: 26px 20px;
  transition: border-color .18s, box-shadow .18s;
}
.service-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.service-card h3 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 8px;
}
.service-card .price {
  font-weight: 700;
  font-size: 1rem;
  color: #C33538;
  margin-left: auto;
}
.service-card a.btn-secondary {
  margin-top: 14px;
}

/* ===========
   TESTIMONIALS
   =========== */
.testimonials {
  background: #f4f5f6;
  padding: 0;
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #e2e6ee;
  box-shadow: 0 3px 16px rgba(34,67,110,0.08);
  padding: 30px 22px 20px 22px;
  transition: box-shadow .21s, border-color .16s;
  color: #2d3750;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card blockquote {
  color: #22436E;
  font-style: italic;
  font-size: 1.06rem;
  border-left: 4px solid #22436E;
  padding-left: 12px;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #36405A;
  font-size: .99rem;
  font-weight: 600;
  margin-top: 10px;
}

.trust-signals {
  font-size: 0.95rem;
  letter-spacing: .02em;
  background: #fafbfe;
  color: #22436E;
  padding: 18px 22px;
  margin-top: 28px;
  border-radius: 10px;
  border: 1.2px solid #e2e6ee;
}

@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 22px 10px 18px 14px;
  }
  .trust-signals {
    padding: 11px 9px;
    margin-top: 16px;
  }
}

/* ==============
   CTA SECTIONS
   ============= */
.cta-section {
  margin-bottom: 60px;
  background: #22436E;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(34,67,110,0.13);
  padding: 38px 0;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section .btn-primary, .cta-section .btn-secondary {
  background: #fff;
  color: #22436E;
  margin-top: 18px;
}
.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
  background: #C33538;
  color: #fff;
}


/* =======================
   FAQS & SUPPORT BANNERS
   ======================= */
.faq-section {
  margin-bottom: 50px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.faq-item {
  min-width: 240px;
  flex: 1 1 220px;
  border-radius: 10px;
  border: 1.5px solid #e2e6ee;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(34,67,110,0.07);
  padding: 20px 18px;
  transition: box-shadow .2s, border-color .16s;
}
.faq-item h3 {
  color: #C33538;
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.faq-item p {
  color: #36405A;
}
.consult-banner {
  padding: 15px 19px;
  background: #C33538;
  color: #FFF;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0;
  margin-top: 16px;
}
.consult-banner a {
  color: #FFF;
  text-decoration: underline;
  font-weight: 700;
}
.consult-banner a:hover {
  color: #22436E;
  background: #fff;
  border-radius: 5px;
  padding: 2px 6px;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: #22436E;
  color: #fff;
  padding: 28px 0 0 0;
  border-top: 6px solid #C33538;
  box-shadow: 0 -2px 8px rgba(34,67,110,0.075);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background .18s, color .14s;
}
.footer-nav a:hover {
  background: #fff;
  color: #22436E;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
.footer-brand p {
  color: #fff;
  font-size: 0.87rem;
}

@media (max-width: 650px) {
  .footer-nav { gap: 8px; }
  .footer-brand { flex-direction: column; gap: 6px; }
}

/* =========================
   ADDITIONAL LAYOUT CLASSES
   ========================= */
.about-section, .info-section, .downloads, .success-section, .contact-info-section {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,67,110,0.07);
  border: 1.5px solid #e2e6ee;
  padding: 38px 24px 34px 24px;
}
.text-section {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-left: 16px;
  margin-bottom: 4px;
}
.text-section li {
  list-style: disc inside;
  color: #22436E;
  font-size: 1rem;
  margin-bottom: 0;
}
.download-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}
.download-links li {
  background: #FAFBFE;
  border-radius: 8px;
  border: 1.4px solid #e2e6ee;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #22436E;
  transition: background .18s, border-color .14s;
}
.download-links a {
  color: #22436E;
  font-weight: 600;
}
.download-links li:hover, .download-links li:focus {
  background: #e6ebf1;
  border-color: #C33538;
}

/* Cookies Consent Banner & Modal */
.cookies-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #22436E;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(34,67,110,0.14);
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 18px 14px;
  gap: 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .34s, transform .34s;
}
.cookies-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookies-banner__text {
  font-size: 1rem;
  color: #fff;
  flex: 1 1 auto;
  max-width: 780px;
}
.cookies-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookies-btn {
  background: #fff;
  color: #22436E;
  border-radius: 16px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background .15s, color .18s, transform .1s;
  box-shadow: 0 2px 8px rgba(34,67,110,0.09);
}
.cookies-btn.accept {
  background: #C33538;
  color: #fff;
}
.cookies-btn.accept:hover {
  background: #22436E;
  color: #fff;
}
.cookies-btn.settings {
  background: #fff;
  color: #22436E;
}
.cookies-btn.settings:hover {
  background: #C33538;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 400;
  background: rgba(34,67,110,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .32s;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(34,67,110,0.18);
  padding: 34px 32px 24px 32px;
  width: 94vw;
  max-width: 444px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: stretch;
  transform: translateY(0);
  opacity: 1;
  transition: transform .32s, opacity .22s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  color: #C33538;
  border: none;
  cursor: pointer;
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #22436E;
  margin-bottom: 8px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: #22436E;
  width: 18px; height: 18px;
}
.cookie-modal__category .toggle-label {
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: #22436E;
  font-size: 1.02rem;
}

.cookie-modal__category.essential input[type="checkbox"]:disabled {
  filter: grayscale(1) opacity(0.7);
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .cookies-btn {
  padding: 7px 20px;
  font-size: 1rem;
}

/* Animation for modal show/hide */
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__dialog.hide {
  transform: translateY(40px);
  opacity: 0;
}

/* ================
   MEDIA QUERIES
   ================ */
@media (max-width: 768px) {
  .about-section, .info-section, .downloads, .success-section, .contact-info-section {
    padding: 20px 6px 18px 6px;
    border-radius: 10px;
  }
  .cookie-modal__dialog {
    padding: 18px 7vw 16px 7vw;
  }
  .cookies-banner {
    flex-direction: column;
    padding: 18px 2vw 16px 2vw;
    gap: 12px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookies-banner__actions {
    gap: 6px;
  }
}

/* =============
   MISC ELEMENTS
   ============= */
.price {
  font-size: .99rem;
  font-family: 'Montserrat', sans-serif;
  color: #C33538;
  background: #f7d5d6;
  border-radius: 6px;
  padding: 0 7px;
  font-weight: 700;
}
/* List styling for download & footer links */
.download-links li:before { content: '\25AB'; color: #C33538; margin-right: 12px; font-size: 0.9em; display: inline-block; }
.footer-nav a:before { content: ''; display: none; }

/* Table styling (for future proofs) */
table {
  width: 100%;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,67,110,0.07);
  overflow: hidden;
}
thead th {
  background: #22436E;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
td, th {
  padding: 12px 7px;
  border-bottom: 1px solid #e2e6ee;
}

/* Hide elements accessibly */
.visually-hidden {
  position: absolute;
  left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}

/* ==============
   MICROINTERACTIONS
   ============== */
.btn-primary, .btn-secondary, .service-card, .feature, .testimonial-card, .faq-item, .download-links li, .cookies-btn {
  transition: background .18s, color .18s, box-shadow .18s, border-color .18s, transform 0.11s;
}
.btn-primary:active, .btn-secondary:active, .cookies-btn:active {
  transform: scale(0.97);
}
.service-card:hover, .feature:hover {
  border-color: #22436E;
  box-shadow: 0 5px 20px rgba(34,67,110,0.11);
}

/* Angular decorations (optional for geometric style) */
.section:before, .hero:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px;
  right: -43px;
  width: 125px;
  height: 125px;
  background: #C3353820;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 0;
}
.hero:before {
  top: auto;
  bottom: -32px;
  left: -50px;
  right: auto;
  width: 110px;
  height: 110px;
  background: #FFF2;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}
@media (max-width: 768px) {
  .section:before, .hero:before { display: none; }
}

/* Utility: Accessibility highlights for focus */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus,
.cookies-btn:focus {
  outline: 2px solid #C33538;
  outline-offset: 2px;
  box-shadow: 0 0 2px 1px #C3353844;
}

/* ================================
   ENSURE MINIMUM 20PX SPACING BETWEEN CARDS & SECTIONS
   ================================ */
.card, .service-card, .feature, .testimonial-card, .faq-item, .download-links li {
  margin-bottom: 20px;
}
.section, .about-section, .info-section, .downloads, .contact-info-section, .success-section {
  margin-bottom: 60px;
}

/* Prevent overlaps */
main > section, .section, .about-section, .services-section, .info-section {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* ===========
   PRINT STYLING
   ============ */
@media print {
  header, footer, .cookies-banner, .cookie-modal { display: none !important; }
  body { background: #FFF; color: #282828; }
}
