/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}
html {
  scroll-behavior: smooth;
  background: #f7fafc;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22495d;
  background: #f7fafc;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
li {
  margin-bottom: 8px;
}
a {
  color: #22495d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #d6b85a;
  outline: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #e0e6ea;
  margin: 24px 0;
}

/* =============
   TYPOGRAPHY
   ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22495d;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.15;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

p {
  color: #22495d;
  font-size: 1rem;
  margin-bottom: 16px;
}
.section ul, .section ol {
  margin-bottom: 16px;
}

/* For formal/corporate look */
::selection {
  background: #d6b85a;
  color: #22495d;
}

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

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* ==========
   HEADER
   ========== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(34, 73, 93, 0.07);
  padding: 0;
  width: 100%;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  min-height: 74px;
}
header img {
  height: 48px;
  margin: 12px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 8px 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22495d;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1c3b4a;
  background: #f7fafc;
}
.main-nav .cta-primary {
  background: #d6b85a;
  color: #22495d;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(34, 73, 93, 0.07);
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #22495d;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: #d6b85a;
  color: #22495d;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-left: 20px;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #22495d;
}

/* ===== MOBILE NAV (Burger menu) ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,73,93,0.97);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,1,.7,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 26px 26px 16px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #d6b85a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-right: 0;
  margin-top: 32px;
  width: 100%;
  align-items: flex-end;
  padding-right: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 0 8px 16px;
  transition: color 0.18s;
  border-radius: 5px;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #d6b85a;
  background: rgba(214, 184, 90, 0.14);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  header .container {
    padding: 0 10px;
  }
  .main-nav a { font-size: 0.97rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header img {
    height: 36px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(115deg, #f7fafc 70%, #e8eef2 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 54px 0 26px 0;
  margin-bottom: 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  gap: 16px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22495d;
  font-weight: 700;
}
.hero p {
  font-size: 1.08rem;
  color: #22495d;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0 2px 0;
    min-height: 160px;
  }
  .hero .container { padding: 0 8px; }
  .hero .content-wrapper { max-width: 100%; }
}

/* =====================================
   LAYOUT PATTERNS (MANDATORY CLASSES)
   ===================================== */
.features-grid,.step-grid,.services-grid,.blog-articles,.card-container,.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34,73,93,0.08);
  position: relative;
  padding: 28px 20px;
  min-width: 220px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 3px rgba(34,73,93,0.13);
}
.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: 18px;
    align-items: flex-start;
  }
  .features-grid, .step-grid, .services-grid, .blog-articles, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px 0 rgba(34,73,93,0.08);
  padding: 20px 28px;
  margin-bottom: 20px;
  border-left: 5px solid #22495d;
  max-width: 620px;
  color: #22495d;
  font-size: 1rem;
  transition: box-shadow 0.16s;
}
.testimonial-card strong { color: #22495d; font-weight: 700; font-size: 1.01em; }
.testimonial-card p { color: #22495d; }

.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 18px 3px rgba(214,184,90,0.19);
}

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

/* ==== SPECIAL ELEMENTS ==== */
.services-grid, .features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid .feature, .services-grid .service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(34,73,93,0.06);
  padding: 24px 18px;
  min-width: 200px;
  flex: 1 0 220px;
  transition: box-shadow 0.19s, border 0.12s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  margin-right: 0;
}
.features-grid .feature:hover, .services-grid .service-card:hover {
  box-shadow: 0 4px 24px 5px rgba(214,184,90,0.11);
  border-left: 4px solid #d6b85a;
}
.features-grid .feature img, .services-grid .service-card img {
  height: 44px;
  margin-bottom: 10px;
}
.features-grid .feature h3, .services-grid .service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  margin-bottom: 8px;
}

@media (max-width: 680px) {
  .features-grid .feature, .services-grid .service-card {
    min-width: 0;
    flex: 1 0 100%;
  }
}

@media (max-width: 500px) {
  .feature img, .service-card img {
    height: 34px;
  }
  .testimonial-card { padding: 16px 8px; }
}

/* ==== CTA Primary Button ==== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d6b85a;
  color: #22495d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 14px 32px;
  cursor: pointer;
  text-align: center;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(34,73,93,0.10);
  transition: background 0.18s, color 0.15s, transform 0.19s;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22495d;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(34,73,93,0.13);
}

/* === Trust, Badges, Icons === */
.trust-badges, .service-icons, .feature-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}
.trust-badges img, .service-icons img, .feature-icons img {
  height: 32px;
  filter: grayscale(0.24) contrast(1.1);
}
@media (max-width: 600px) {
  .trust-badges, .service-icons, .feature-icons { gap: 12px; }
  .trust-badges img, .service-icons img, .feature-icons img { height: 28px; }
}

/* === List Styles === */
.service-USPs, .feature-list, .key-points-list, .important-points-list, .gdpr-rights-list, .cookie-types-list {
  list-style: disc;
  font-size: 1rem;
  color: #22495d;
  margin: 12px 0 18px 0;
}
.service-USPs li, .service-list li, .feature-list li {
  margin-bottom: 8px;
}

/* === Project & Reference Styles === */
.project-types-list {
  list-style: square;
  font-size: 1rem;
  padding-left: 18px;
  margin-bottom: 22px;
  color: #22495d;
}
.project-category-descriptions {
  font-size: 1rem;
  color: #22495d;
  margin-bottom: 18px;
}
.review-summary {
  background: #e8eef2;
  color: #22495d;
  border-radius: 8px;
  padding: 18px 24px;
  margin-top: 18px;
  font-size: 1.13rem;
  font-weight: 600;
}

/* ===== Blog Styles ===== */
.blog-list {
  margin-bottom: 36px;
}
.blog-articles {
  gap: 24px;
}
.blog-articles article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(34,73,93,0.06);
  padding: 22px 18px;
  flex: 1 0 280px;
  transition: box-shadow 0.17s, border 0.12s;
}
.blog-articles article:hover {
  box-shadow: 0 4px 18px 3px rgba(214,184,90,0.14);
  border-left: 4px solid #d6b85a;
}
.category-filters {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.category-filters a {
  background: #e8eef2;
  padding: 5px 20px;
  border-radius: 16px;
  font-size: 0.97rem;
  color: #22495d;
  margin-left: 0;
  margin-bottom: 4px;
  transition: background 0.17s;
}
.category-filters a:hover, .category-filters a.active {
  background: #d6b85a;
  color: #22495d;
}

/* ====== Contact Details Section ====== */
.contact-details .text-section img {
  vertical-align: middle;
  margin-right: 10px;
  filter: grayscale(0.19) contrast(1.14) brightness(0.96);
  height: 23px;
}
.contact-details .text-section p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

/* =============
   FORMS DEFAULT
   ============= */
input, textarea, select {
  font-family: inherit;
  color: #22495d;
  border: 1px solid #bfd7e5;
  border-radius: 6px;
  padding: 10px 14px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #22495d;
  box-shadow: 0 0 0 1.5px #d6b85a33;
}

/* ====================
   WORKFLOW STEPS (OL)
   ==================== */
.workflow-steps, .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 28px 0;
  align-items: flex-start;
  color: #22495d;
  font-size: 1.01rem;
}
.workflow-steps li, .step {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(34,73,93,0.06);
  padding: 20px 16px;
  min-width: 180px;
  flex: 1 0 150px;
  margin-bottom: 0;
  list-style-type: decimal;
}
.step h3 { font-size: 1rem; font-family: 'Montserrat',Arial,sans-serif; font-weight: 600; }

@media (max-width: 550px) {
  .workflow-steps, .step-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============
   MODALS/OVERLAYS
   ============= */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,73,93,0.57);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.modal.open {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 36px 18px 26px 18px;
  min-width: 310px;
  max-width: 96vw;
  box-shadow: 0 6px 28px 5px rgba(34,73,93,0.15);
  color: #22495d;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* =============
   FOOTER LAYOUT
   ============= */
footer {
  background: #22495d;
  color: #fff;
  padding: 48px 0 22px 0;
  font-size: 0.99rem;
  margin-top: 40px;
  position: relative;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 18px;
}
.footer-main-nav, .footer-privacy-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}
.footer-main-nav a, .footer-privacy-nav a {
  color: #fff;
  opacity: 0.93;
  font-weight: 500;
  margin-bottom: 4px;
  transition: color 0.18s, opacity 0.20s;
}
.footer-main-nav a:hover, .footer-privacy-nav a:hover {
  color: #d6b85a;
  opacity: 1;
}
.footer-contact {
  min-width: 220px;
  color: #e7eaf0;
  margin-bottom: 14px;
}
.footer-contact a { color: #fff; text-decoration: underline; }
.footer-contact a:hover { color: #d6b85a; }
.footer-contact p { margin-bottom: 11px; line-height: 1.5; }
.footer-brand {
  min-width: 160px;
  text-align: center;
  color: #cdd1d8;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding: 0 5px;
  }
  .footer-main-nav, .footer-privacy-nav {
    flex-direction: row;
    gap: 10px 18px;
    min-width: unset;
    flex-wrap: wrap;
  }
  .footer-brand {
    text-align: left;
  }
}

/* ======================
   COOKIE CONSENT BANNER
   ====================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #22495d;
  color: #fff;
  box-shadow: 0 -2px 18px 3px rgba(34,73,93,0.11);
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  font-size: 1rem;
  gap: 26px 18px;
  width: 100%;
  animation: slideUp 0.7s cubic-bezier(.85,.05,.73,1.05);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    font-size: 0.97rem;
  }
}
.cookie-consent-banner button {
  margin-right: 12px;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.accept-cookies, .reject-cookies, .cookie-settings-btn {
  border-radius: 5px;
  outline: none;
  min-width: 100px;
  padding: 10px 22px;
  font-size: 0.97rem;
  font-weight: 700;
  border: none;
  transition: background 0.19s, color 0.18s, box-shadow 0.14s;
  cursor: pointer;
}
.accept-cookies {
  background: #d6b85a;
  color: #22495d;
}
.accept-cookies:hover, .accept-cookies:focus {
  background: #fff;
  color: #22495d;
  box-shadow: 0 4px 18px 3px rgba(214,184,90,0.11);
}
.reject-cookies {
  background: #fff;
  color: #22495d;
  border: 1.2px solid #d6b85a;
}
.reject-cookies:hover, .reject-cookies:focus {
  background: #d6b85a;
  color: #22495d;
}
.cookie-settings-btn {
  background: transparent;
  color: #d6b85a;
  border: 1.2px solid #d6b85a;
  padding: 10px 14px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #d6b85a;
  color: #22495d;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(34,73,93,0.43);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #22495d;
  border-radius: 12px;
  padding: 34px 24px 22px 24px;
  min-width: 310px;
  box-shadow: 0 6px 28px 5px rgba(34,73,93,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDown 0.45s cubic-bezier(.85,.05,.73,1.05);
}
@media (max-width: 420px) {
  .cookie-modal .modal-content {
    min-width: 0;
    max-width: 98vw;
    padding: 20px 8px;
  }
}
.cookie-modal h2 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #22495d;
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #d6b85a;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
  border-bottom: 1px solid #e8eef2;
  padding-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal input[type=checkbox] {
  accent-color: #d6b85a;
  width: 22px; height: 22px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
}
.cookie-modal .cookie-category .info {
  font-size: 0.98em;
  color: #566879;
  margin-left: 6px;
}
.cookie-modal .cookie-category .always-enabled {
  color: #56a174;
  font-size: 0.97em;
  font-weight: 600;
  padding-left: 6px;
}

@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===========
   ANIMATIONS
   =========== */
.cta-primary, .main-nav .cta-primary, .accept-cookies, .reject-cookies, .cookie-settings-btn {
  will-change: background, color, transform, box-shadow;
}

/* ==== GENERAL UTILITY CLASSES ==== */
.hide-desktop {
  display: none;
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block !important; }
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-3 { margin-top: 20px; }
.mb-3 { margin-bottom: 20px; }
.mb-2 { margin-bottom: 12px; }
.mt-2 { margin-top: 12px; }

/*
===============
CONSISTENT FLEX SPACING
===============
*/
.card-container, .content-grid, .features-grid, .services-grid, .step-grid, .blog-articles {
  gap: 24px;
  margin-bottom: 20px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* Prevent overlap by controlling min-width, gap, and wrap */
.card, .testimonial-card, .feature, .service-card {
  min-width: 0;
  max-width: 100%;
}

/* ====== ACCENT AND FOCUS STYLES ====== */
:focus-visible {
  outline: 2px solid #d6b85a;
  outline-offset: 2px;
}

/* === PRINT SUPPORT (optional for corporate) === */
@media print {
  header, nav, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body { background: #fff; }
}

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