/* =========================================================
   CSS RESET & BASELINE — Elegant Classic for কার এক্সপার্ট ঢাকা
   ========================================================= */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Noto Sans Bengali', 'Times New Roman', Times, serif;
  background-color: #F4F6FA;
  color: #27354B;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #27354B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2CB67D;
  outline: none;
}
ul, ol {
  margin-left: 2rem;
}
b, strong {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 16px;
  border-bottom: 1px solid #e3e7ef;
  text-align: left;
}
th {
  background: #f8fafb;
  font-weight: bold;
}

/* =====================
   TYPOGRAPHY HIERARCHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans Bengali', serif;
  color: #27354B;
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-family: 'Roboto', 'Noto Sans Bengali', serif;
  font-size: 1rem;
  color: #2A2A2A;
}

@media (min-width: 769px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.5rem; }
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(39,53,75,0.05);
}

@media (max-width: 768px) {
  .section, section { padding: 28px 7px; }
  .container { padding: 0 6px; }
}

/* ==========================
   HEADER/NAVIGATION STYLES
   ========================== */
header {
  background: #fff;
  border-bottom: 1.5px solid #e3e7ef;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Noto Sans Bengali', serif;
  font-size: 1rem;
  padding: 4px 4px 2px 4px;
  border-radius: 2px;
  color: #27354B;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #2CB67D;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #2CB67D;
  color: #fff;
  font-family: 'Noto Sans Bengali', serif;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px 0 rgba(44,182,125,0.06);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.24s, transform 0.14s;
  letter-spacing: 0.1em;
  margin-left: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #1f915f;
  transform: translateY(-1.5px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(39,53,75,0.09);
}

/* ========================
   MOBILE NAVIGATION
   ======================== */
.mobile-menu-toggle {
  display: inline-flex;
  background: #fff;
  border: 1.5px solid #27354B;
  color: #27354B;
  font-size: 1.8rem;
  border-radius: 8px;
  padding: 4px 14px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f7fafc;
  color: #2CB67D;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,53,75,0.98);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(105%);
  transition: transform 0.37s cubic-bezier(.41,1.3,.41,1);
  z-index: 1005;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  padding: 26px 30px 10px 0;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2CB67D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  align-items: flex-end;
  padding: 23px 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Noto Sans Bengali', serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 9px 0;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.14s, background 0.12s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27354B;
  color: #2CB67D;
}

@media (min-width: 801px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 17px;
    top: 21px;
  }
  header nav, .cta-button {
    display: none !important;
  }
}

/* ===============
   MAIN LAYOUTS
   =============== */
.hero {
  background: #F4F6FA;
  padding: 48px 0 50px 0;
  border-bottom: 2.5px solid #eaeaea;
}
.hero .container {
  min-height: 270px;
}
.hero h1 {
  color: #27354B;
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.13rem;
  color: #3a4b69;
  margin-bottom: 32px;
  max-width: 540px;
}

.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(39,53,75,0.03);
  padding: 26px 18px; margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #f0f3f6;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.12s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 6px 18px 0 rgba(44,182,125,0.11);
  border-color: #2CB67D22;
  transform: translateY(-2.5px) scale(1.019);
}
.features img {
  width: 36px; height: 36px;
  margin-bottom: 4px;
}
.features h3 {
  font-size: 1.15rem;
  color: #27354B;
}

.whyus ul, .values ul, .service-list, .database-checklist {
  list-style-type: disc;
  margin-left: 1.7rem;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.statistics-highlight {
  display: flex;
  gap: 30px;
  margin-top: 12px;
}
.statistics-highlight > div {
  font-size: 1.13rem;
  font-weight: 700;
  background: #2CB67D11;
  color: #27354B;
  border-radius: 16px;
  padding: 10px 20px;
}

.services-brief .service-cards-short {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.services-brief .service-cards-short > div {
  background: #fff;
  border: 1px solid #f0f3f6;
  border-radius: 11px;
  box-shadow: 0 2px 14px 0 rgba(39,53,75,0.06);
  padding: 16px 18px;
  min-width: 160px;
  flex: 1 1 195px;
}
.services-brief .service-cards-short h3 {
  font-size: 1.1rem;
}

.call_to_action .cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #f7fbf8;
  border-left: 4px solid #2CB67D;
  padding: 18px 22px;
  border-radius: 11px;
}

@media (max-width: 768px) {
  .features .feature-grid { flex-direction: column; }
  .statistics-highlight { flex-direction: column; gap: 10px; }
  .services-brief .service-cards-short { flex-direction: column; }
  .call_to_action .cta-box { padding: 12px 9px; }
}

/* ========================
   CARDS & CONTENT GRIDS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(39,53,75,0.05);
  padding: 20px 23px;
  margin-bottom: 20px;
  position: relative;
  border: 1.2px solid #f0f3f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(44,182,125,0.10);
  border-color: #2CB67D18;
  transform: translateY(-2.5px) scale(1.018);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-grid { flex-direction: column; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/**** Testimonial Cards ****/
.testimonial-preview, .testimonials, .testimonial-list {
  background: #f9fafc;
  border-radius: 13px;
}

.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 24px;
  background: #fff;
  border: 1.5px solid #e6eaf0;
  border-radius: 13px;
  box-shadow: 0 1.5px 11px 0 rgba(39,53,75,0.06);
  width: 100%;
  max-width: 340px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s, border-color 0.18s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #27354B;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card > div {
  font-size: 1rem;
  color: #333e5d;
}
.testimonial-card:hover {
  box-shadow: 0 9px 28px 0 rgba(44,182,125,0.11);
  border-color: #2CB67D25;
  transform: translateY(-1.5px) scale(1.03);
}

.star-ratings-overview {
  margin-top: 18px;
  font-size: 1.07rem;
  color: #23644A;
  font-weight: 600;
  background: #f4f8f7;
  padding: 10px 18px;
  border-radius: 10px;
  border-left: 3.5px solid #2CB67D;
}

.success-stories .case-study-briefs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.success-stories .text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(39,53,75,0.03);
  border: 1px solid #f0f3f6;
  padding: 20px 18px;
  min-width: 160px;
  flex: 1 1 210px;
}
@media (max-width: 768px) {
  .testimonials-slider, .testimonial-list, .success-stories .case-study-briefs { flex-direction: column; gap: 14px; }
}

/**** Benefits grid ****/
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.benefits-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(39,53,75,0.03);
  padding: 20px 16px; margin-bottom: 18px;
  flex: 1 1 190px;
  min-width: 160px;
  display: flex; flex-direction: column; gap: 7px;
  align-items: center;
}
.benefits-grid img { width: 30px; margin-bottom: 4px; }
@media (max-width: 768px) { .benefits-grid { flex-direction: column; } }

/**** Process Steps, Tables and Lists ****/
.process-steps ol, .how-it-works-steps ol {
  list-style: decimal inside;
  margin-left: 0;
  padding-left: 18px;
  margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 9px;
}

.pricing-table {
  background: #fff;
  border-radius: 10px;
  border: 1.3px solid #e6eaf0;
  box-shadow: 0 1px 7px 0 rgba(39,53,75,0.01);
  margin-bottom: 20px;
  width: 100%;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 11px 13px;
  font-size: 1rem;
}

@media (max-width: 600px) { .pricing-table th, .pricing-table td { font-size: 0.98rem; padding: 10px 5px; } }

/**** Consultation, About, Policies ****/
.about .text-section, .values ul, .policy-summary, .gdpr-overview, .data-use-details, .user-rights-info, .what-are-cookies, .how-we-use-cookies, .terms-overview, .user-obligations {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1.5px 9px 0 rgba(39,53,75,0.035);
  padding: 19px 16px;
  margin-bottom: 16px;
}

.customer-focus-highlight, .consultation-inclusion, .onsite-inspection-points {
  background: #f4fbf6;
  border-left: 4px solid #2CB67D;
  border-radius: 8px;
  padding: 11px 15px;
  margin-top: 13px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #27354B;
}

/**** Contact Section Style ****/
.contact-info .address-block, .contact-info .phone-email, .contact-info .operating-hours {
  background: #fff;
  border-radius: 10px;
  padding: 17px 12px;
  box-shadow: 0 1px 6px 0 rgba(44,182,125,0.08);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img { width: 21px; vertical-align: middle; margin-right: 6px; }

/**** Gallery Info & Thank You ****/
.gallery-info .info-text, .thank-you-message, .next-steps-info {
  padding: 18px 11px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1.5px 9px 0 rgba(39,53,75,0.02);
}

/**** Footer ****/
footer {
  background: #f5f8fb;
  border-top: 1.9px solid #e3e7ef;
  font-size: 0.99rem;
  padding: 28px 0 14px 0;
  box-shadow: 0 0.5px 5px rgba(39,53,75,0.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #27354B;
  font-size: 0.97rem;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #2CB67D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #27354B;
  font-size: 1rem;
  margin-top: 4px;
}
.brand-footer {
  color: #5d626b;
  font-size: 1rem;
  margin-top: 10px;
}
@media (max-width: 600px) {
  footer nav { flex-direction: column; gap: 6px; }
}

/**** Cookie Consent Banner & Modal ****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(39,53,75,0.98);
  color: #fff;
  z-index: 3002;
  width: 100%;
  min-height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 30px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -3px 16px 0 rgba(39,53,75,0.14);
  animation: ccbSlideUp 0.75s ease;
}
@keyframes ccbSlideUp {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-banner-text {
  flex: 2 1 320px;
  font-size: 1rem;
  font-family: 'Noto Sans Bengali', serif;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex: 0 1 auto;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 0.97rem;
  font-family: 'Noto Sans Bengali', serif;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s;
  margin-left: 2px;
  margin-right: 2px;
  font-weight: 600;
}
.cookie-accept {
  background: #2CB67D;
  color: #fff;
  box-shadow: 0 1px 7px 0 rgba(44,182,125,0.11);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1e8c58;
}
.cookie-reject {
  background: #fff;
  color: #27354B;
  border: 1.2px solid #e3e7ef;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ffebe7;
  color: #D5274B;
}
.cookie-settings {
  background: #27354B;
  color: #fff;
  border: 1.2px solid #27354B;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #222c3d;
}
@media (max-width: 640px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 13px 7px;
    align-items: flex-start;
    gap: 8px;
  }
  .cookie-consent-banner .cookie-buttons { gap: 9px; }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right:0; bottom: 0;
  background: rgba(39,53,75,0.29);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.34s ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #27354B;
  border-radius: 13px;
  box-shadow: 0 12px 42px 0 rgba(39,53,75,0.19);
  padding: 32px 18px 20px 22px;
  min-width: 320px;
  max-width: 94vw;
  max-height: 86vh;
  overflow-y: auto;
  font-family: 'Noto Sans Bengali', serif;
  animation: modalSlideY 0.37s cubic-bezier(.41,1.34,.41,1);
}
@keyframes modalSlideY { from { transform: translateY(70px); } to { transform: translateY(0); } }
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-category strong { font-size: 1.07rem; color: #27354B; }
.cookie-toggle {
  margin-left: auto;
  background: #f2f5f7;
  border-radius: 15px;
  width: 37px;
  height: 21px;
  position: relative;
  border: 1.4px solid #e3e7ef;
  transition: background 0.17s;
  display: flex; align-items: center;
}
.cookie-toggle input {
  opacity: 0; position: absolute; width: 100%; height: 100%; cursor: pointer;
}
.cookie-toggle-label {
  display: block;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.3px;
  transition: left 0.18s, background 0.16s;
  border: 1.2px solid #e3e7ef;
}
.cookie-toggle input:checked + .cookie-toggle-label {
  background: #2CB67D;
  left: 13px;
  border-color: #156c30;
}
.cookie-toggle input:disabled + .cookie-toggle-label {
  background: #d3e9da;
  left: 2px;
  border-color: #aad6ba;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Noto Sans Bengali', serif;
  border-radius: 6px;
  border: none;
  padding: 8px 21px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #f0f4f7;
  color: #27354B;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-actions .cookie-accept {
  background: #2CB67D; color: #fff;
}
.cookie-modal-actions .cookie-accept:hover { background: #247d58; }
.cookie-modal-actions .cookie-reject {
  background: #ffeaea; color: #d44141;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #27354B;
  cursor: pointer;
  position: absolute;
  top: 14px; right: 18px;
  z-index: 2;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #2CB67D; }

/* ===========
   UTILITIES
   =========== */
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* Accessibility utility */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  top: auto; right: auto;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 960px) {
  .container { max-width: 96vw; }
}
@media (max-width: 600px) {
  .container { padding: 0 2px; max-width: 99vw; }
  .section, section { padding: 17px 3px; }
  .testimonial-card { padding: 13px 8px; max-width: 100%; }
}

/* ===============
   ELEGANT MICRO-INTERACTIONS
   =============== */
button, .cta-button, .cookie-consent-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.13s;
}
.card, .testimonial-card, .feature-item, .success-stories .text-section, .service-cards-short > div, .benefits-grid > div {
  transition: box-shadow 0.15s, border-color 0.13s, transform 0.11s;
}

/* ===================
   ENSURE MINIMUM CARD SPACING
   =================== */
.card, .testimonial-card, .feature-item, .success-stories .text-section, .service-cards-short > div, .benefits-grid > div {
  margin-bottom: 20px;
}

/* CRITICAL override: nav & mobile menu z-index layering */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
  z-index: 1010;
}
.mobile-menu { z-index: 2002; }
.cookie-consent-banner { z-index: 3002; }
.cookie-modal-overlay { z-index: 3010; }

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