/* --------------------------------------------------
   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 {
  font-size: 16px; /* for accessible fixed scale */
  scroll-behavior: smooth;
}
footer p {
  color: white;
}
body {
  line-height: 1.6;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #2C3E50;
  background: #FAFAFA;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button, input, select, textarea {
  font: inherit;
}
:focus { outline: 2px solid #F39C12; outline-offset: 2px; }

/* --------------------------------------------------
   BRAND COLORS & TYPOGRAPHY
-------------------------------------------------- */
:root {
  --color-primary: #2C3E50;
  --color-secondary: #F39C12;
  --color-accent: #ECF0F1;
  --color-bg: #FAFAFA;
  --color-border: #E5E7EB;
  --color-heading: #222;
  --color-link: #2C3E50;
  --color-link-hover: #F39C12;
  --color-btn-bg: #2C3E50;
  --color-btn-bg-hover: #1B252F;
  --color-btn-text: #fff;
  --color-shadow: rgba(44,62,80,0.08);
  --rounded-md: 12px;
  --rounded-sm: 6px;
  --transition: all .22s cubic-bezier(.4,.1,0,1);
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Open Sans', Arial, sans-serif;
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------
   LAYOUT CONTAINERS & SPACING
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 24px 0 var(--color-shadow);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 28px 24px;
  flex: 1 1 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  border-left: 6px solid var(--color-secondary);
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  margin-bottom: 20px;
  max-width: 650px;
}
.testimonial-card p {
  font-size: 1.125rem;
  font-style: italic;
  color: #222;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(44,62,80,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
  padding: 0 32px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
  transition: color .18s, border .18s;
}
.main-nav a:not(:first-child):hover {
  color: var(--color-secondary);
}
.main-nav img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}

@media (max-width: 1080px) {
  .main-nav { gap: 20px; padding: 0 10px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}

/* Mobile menu burger/button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  padding: 0 16px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  z-index: 1002;
  transition: color .18s;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 14px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.68,-0.13,.41,1.06);
  box-shadow: 2px 0 32px rgba(44,62,80,.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 30px 0 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  position: absolute;
  top: 18px; right: 26px;
  cursor: pointer;
  z-index: 1020;
  padding: 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  width: 92vw; /* prevent long link overflows on mobile */
  max-width: 340px;
}
.mobile-nav a {
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  padding: 10px 4px;
  border-radius: var(--rounded-sm);
  transition: background .18s, color .18s;
}
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* Hide mobile menu & toggle on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Backdrop for menu (optional) */
.mobile-menu::before {
  content: '';
  display: none;
}

/* --------------------------------------------------
   HERO, HEADINGS & TEXTUAL STRUCTURE
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
h1 { font-size: 2.8rem; line-height: 1.13; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.25; }
h4 { font-size: 1.12rem; }
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.10rem; }
}
p {
  font-family: var(--font-body);
  color: #2c3e50;
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.7em;
  line-height: 1.7;
}
.strong, strong {
  font-weight: 600;
  color: var(--color-primary);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.03rem;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 0;
  margin-bottom: 10px;
  color: #444;
}
.text-section li {
  margin-bottom: 8px;
}

/* --------------------------------------------------
   BUTTONS & INTERACTIONS
-------------------------------------------------- */
.btn-primary, .text-section a.btn-primary {
  display: inline-block;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 600;
  border: none;
  padding: 12px 36px;
  border-radius: var(--rounded-md);
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-bottom: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.025);
}
a.btn-primary { text-decoration: none; }

/* --------------------------------------------------
   FEATURES, CARDS, USP, SERVICE CARDS
-------------------------------------------------- */
.features,
.feature-grid, .feature-list,
.usp-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .feature-grid {
  gap: 24px 28px;
}
.feature-grid > li, .service-cards > div, .usp-list > li, .feature-list > li {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 28px 22px 22px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow .18s, transform .14s;
}
.feature-list > li {
  min-width: 200px;
  max-width: 340px;
  flex: 1 1 160px;
}
.feature-grid > li:hover, .service-cards > div:hover, .usp-list > li:hover {
  box-shadow: 0 4px 32px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img, .feature-list img, .usp-list img {
  width: 43px; height: 43px; margin-bottom: 4px;
}
.feature-grid h3, .feature-list strong, .usp-list {
  color: var(--color-primary);
  font-size: 1.19rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.service-cards > div span, .feature-grid span {
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.13rem;
  margin-top: 7px;
}
.service-cards > div {
  align-items: flex-start;
}
.service-cards {
  gap: 24px;
  margin-bottom: 18px;
}

/* --------------------------------------------------
   TABLES
-------------------------------------------------- */
table {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-md);
  margin: 20px 0 12px 0;
  background: #fff;
  box-shadow: 0 1px 10px 0 var(--color-shadow);
  overflow: hidden;
}
table caption {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary);
}
thead {
  background: var(--color-accent);
}
th, td {
  padding: 14px 10px;
  text-align: left;
  font-size: 1rem;
}
th {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}
tr {
  border-bottom: 1px solid var(--color-border);
}
tbody tr:nth-child(even) {
  background: #faf9f7;
}

/* --------------------------------------------------
   STEPS, PROCESSES, OL/UL
-------------------------------------------------- */
.step-list, .faq-snippets, .accordion-faq, .usp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: var(--rounded-sm);
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  padding: 15px 18px;
  font-size: 1.09rem;
}
.step-list img { width: 36px; height: 36px; }

.faq-snippets li {
  background: var(--color-accent);
  border-radius: var(--rounded-md);
  padding: 18px 18px;
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.accordion-faq > div {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  margin-bottom: 0;
}
.accordion-faq h3 {
  cursor: pointer;
  display: block;
}
/* FAQ search form */
.search-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin: 16px 0 12px 0;
}
.search-form label {
  font-family: var(--font-sans);
  color: var(--color-primary);
  font-size: 1rem;
}
.search-form input[type=text] {
  flex: 1 1 120px;
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-sm);
  padding: 8px 11px;
  font-size: 1rem;
  color: var(--color-primary);
  background: #fff;
  transition: border .14s;
  outline: none;
}
.search-form input[type=text]:focus {
  border-color: var(--color-secondary);
}
.search-form button {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: var(--rounded-sm);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  transition: background .17s;
}
.search-form button:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #222;
  color: #fff;
  letter-spacing: 0.025em;
  padding: 0 0 16px 0;
}
.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 16px 4px 16px;
  border-radius: var(--rounded-md) var(--rounded-md) 0 0;
}
.brand-info {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}
.brand-info img { width: 49px; height: 49px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  opacity: .84;
  transition: opacity 0.15s, color 0.15s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.contact-snippet {
  flex: 1 1 270px;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  color: #F6F7FA;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .contact-snippet {
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .footer-content {
    padding: 32px 7px 4px 7px;
  }
  .brand-info { gap: 10px; }
}

/* --------------------------------------------------
   LEGAL TEXTS, POLICY, TERMS
-------------------------------------------------- */
.legal, .location {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 24px 0 var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--color-primary);
}
.text-section h2, .text-section h3 {
  margin-top: 6px;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

/* --------------------------------------------------
   CTA, PREVIEW CARDS, OTHER CALLS
-------------------------------------------------- */
.contact-cta, .cta, .about-preview, .services-preview,
.usp, .faq-preview {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contact-cta, .cta, .about-preview, .services-preview, .usp, .faq-preview {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* --------------
   HERO SECTION
---------------- */
.hero {
  display: flex;
  background: linear-gradient(90deg, #F7F6F2 38%, #ECE9E4 100%);
  padding: 56px 0 36px 0;
  position: relative;
  margin-bottom: 32px;
}
.hero .container { max-width: 880px; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero p {
  font-size: 1.22rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 300;
}
.hero .btn-primary {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero { padding: 36px 0 20px 0; }
  .hero h1 { font-size: 2rem; }
  .hero .btn-primary { font-size: 1rem; padding: 10px 18px; }
}

/* --------------
   RESPONSIVE LAYOUT
---------------- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .usp-list, .feature-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-cards, .usp-list, .feature-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature-grid > li, .service-cards > div, .usp-list > li, .feature-list > li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .content-grid { flex-direction: column; gap: 12px; }
}

/* --------------------------------------------------
   MICROINTERACTIONS & ANIMATION
-------------------------------------------------- */
.btn-primary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: var(--transition);
}
section, .card, .testimonial-card, .feature-grid > li, .service-cards > div, .usp-list > li {
  transition: box-shadow .18s, transform .17s;
}

/* Link hover underline effect */
a:not(.btn-primary):hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 20px rgba(44,62,80,0.07);
  z-index: 9990;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s, transform .32s;
}
.cookie-banner.hide {
  opacity: 0; transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 420px;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: var(--rounded-sm);
  border: 1px solid var(--color-border);
  padding: 9px 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  cursor: pointer;
  margin: 0;
  transition: background .13s, color .13s, border .13s, box-shadow .14s;
  font-family: var(--font-sans);
}
.cookie-banner button.cookie-accept {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
  font-weight: 600;
}
.cookie-banner button.cookie-accept:hover,
.cookie-banner button.cookie-accept:focus {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.cookie-banner button.cookie-reject {
  background: #fff; color: var(--color-primary);
}
.cookie-banner button.cookie-reject:hover,
.cookie-banner button.cookie-reject:focus {
  border-color: var(--color-secondary);
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cookie-banner button.cookie-settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner button.cookie-settings:hover {
  background: #f9f9f3;
}
@media (max-width: 710px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: .95rem;
    padding: 16px 6px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 10001;
  background: rgba(44,62,80,0.23);
  justify-content: center;
  align-items: center;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal__content {
  background: #fff;
  border-radius: var(--rounded-md);
  padding: 34px 28px 24px 28px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 8px 48px 0 rgba(44,62,80,0.19);
  animation: fadeInModal .38s cubic-bezier(.41,1,.36,.95);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal__content h2 {
  font-size: 1.25rem;
  margin-bottom: 11px;
}
.cookie-modal__sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
}
/* Switch-style toggle for categories */
.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
  margin-left: 8px;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  border-radius: 22px;
  transition: background .2s;
  border: 1px solid var(--color-border);
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-secondary);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: .15s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: #fff;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: var(--rounded-sm);
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  cursor: pointer;
}
.cookie-modal button.accept {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
}
.cookie-modal button.accept:hover {
  background: var(--color-primary);
}
.cookie-modal button.cancel {
  background: #fff;
}

@media (max-width: 500px) {
  .cookie-modal__content {
    padding: 18px 7px;
  }
}

/* --------------------------------------------------
   GENERAL UTILITY, ACCESSIBILITY, MISC
-------------------------------------------------- */
/* Card shadows */
.card, .feature-grid > li, .service-cards > div, .testimonial-card {
  box-shadow: 0 1px 10px 0 var(--color-shadow);
}
/* Minimum margins between cards/sections */
.section, .about-preview, .services-preview, .cta, .contact-cta, .legal, .location, .usp, .faq-preview {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-grid > li, .service-cards > div {
  margin-bottom: 20px;
}

/* Prevent overlap & add visual hierarchy */
section, .section {
  margin-bottom: 60px;
}
@media (max-width: 820px) {
  section, .section, .about-preview, .services-preview, .cta, .contact-cta, .legal, .location, .usp, .faq-preview {margin-bottom: 35px;}
}

/* Hide scrollbar in modal & mobile nav if needed */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {display: none;}

/* Accessibility: visually-hidden class */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Error/success message styles (for forms) */
.form-feedback {
  color: var(--color-secondary);
  background: #fdf7e1;
  padding: 10px 16px;
  border-radius: var(--rounded-sm);
  margin-bottom: 12px;
  font-size: .99rem;
}

/* --------------------------------------------------
   PRINT STYLES
-------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none !important;}
  body {background: #fff; color: #222;}
  section, .section {box-shadow: none; background: #fff; margin: 0 0 14px 0; padding: 0;}
}
