/* ===============================================================================
  RESET & NORMALIZE (mobile first)
================================================================================ */
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;
  min-height: 100vh;
  background: #232732;
  color: #F4F4F4;
  font-family: 'Montserrat', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #B7A166;
  text-decoration: none;
  transition: color 0.2s;
}
button, [type="button"], [type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Montserrat', Georgia, serif;
  color: #F4F4F4;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* ===============================================================================
  COLOR VARIABLES (FALLBACKS)
================================================================================ */
:root {
  --primary: #25325A;
  --secondary: #B7A166;
  --accent: #F4F4F4;
  --gray: #21242A;
  --mid-gray: #393c44;
  --dark: #181B23;
  --input-bg: #262a36;
  --card-bg: #232732;
  --shadow: 0 2px 12px 0 rgba(34,37,41,0.16);
  --focus-outline: 2px solid #B7A166;
}


/* ===============================================================================
  LAYOUT CONTAINER + SECTIONS
================================================================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  /* Section shapes are managed per section class for industrial look */
}

/* ===============================================================================
  TYPOGRAPHY
================================================================================ */
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  color: #F4F4F4;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.19;
  color: #B7A166;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
}

p {
  color: #E0E0E0;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #B7A166;
  font-weight: 600;
}

.text-section, .privacy-policy-content, .gdpr-policy-content, .terms-of-use-content, .cookie-policy-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  color: #E0E0E0;
}

/* Responsive Typography */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 1.35rem;
  }
  p, .text-section {
    font-size: 1.125rem;
  }
}

/* Industrial Font/Lettering Accent */
.brand-values li,
ul.feature-grid li,
ul.feature-list li,
ul.feature-icons li,
ul.value-icons li,
ul.advantages-grid li,
ul.benefits-list li,
ul.personalization-icons li,
.service-table th {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1rem;
  font-weight: 500;
}


/* ===============================================================================
  HEADER / NAVIGATION
================================================================================ */
header {
  width: 100%;
  background: var(--primary);
  border-bottom: 1px solid #2B3140;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
}
.main-nav a {
  color: #F4F4F4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  padding: 4px 0 4px 0;
  position: relative;
  transition: color .18s;
}

.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  margin-left: 18px;
  border-radius: 6px;
  background: var(--secondary);
  color: #232732;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px 0 rgba(34, 37, 41, 0.14);
  border: none;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #E1D2A0;
  color: #232732;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px 0 rgba(183, 161, 102, 0.17);
  outline: var(--focus-outline);
  z-index: 2;
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #B7A166;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  z-index: 51;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F4F4F4;
  background: #393c44;
  border-radius: 5px;
}

/* Hide navbar & burger in mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============================================================================
  MOBILE MENU (Burger Navigation)
================================================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 37, 41, 0.98);
  box-shadow: 8px 0 18px -4px rgba(24,27,35,0.34);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.47,.01,.33,.96), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #B7A166;
  font-size: 2.1rem;
  margin: 22px 0 22px 26px;
  align-self: flex-start;
  border: none;
  transition: color .22s;
  cursor: pointer;
  z-index: 122;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4F4F4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  margin-top: 14px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #F4F4F4;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid #32343D;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B7A166;
  background: #232732;
  border-radius: 6px;
}


/* ===============================================================================
  HERO & PROMO SECTIONS
================================================================================ */
.hero {
  background: linear-gradient(to bottom right, #232732 85%, #25325A 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 36px 0 rgba(24,27,35,0.22);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .container, .contact-promo .container {
  height: 100%;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  color: #F4F4F4;
}
.hero p {
  color: #DDD;
  margin-bottom: 32px;
}

/* Contact-promo (CTA) */
.contact-promo {
  background: #232732;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-promo h2 {
  color: #B7A166;
  margin-bottom: 12px;
}
.contact-promo p {
  color: #E0E0E0;
}

/* ===============================================================================
  FEATURES LISTS & GRIDS
================================================================================ */
.features {
  background: #232732;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
/* Feature grid - industrial look listing */
ul.feature-grid, ul.feature-list, ul.feature-icons, ul.value-icons, ul.advantages-grid, ul.benefits-list,
ul.brand-values, ul.personalization-icons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 0 0;
  padding: 0;
}
ul.feature-grid li, ul.value-icons li, ul.feature-icons li, ul.advantages-grid li, ul.benefits-list li,
ul.personalization-icons li, ul.brand-values li, ul.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #EEEEEE;
  background: #181B23;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(34,37,41,0.07);
  margin-bottom: 0;
  border-left: 4px solid #B7A166;
  transition: box-shadow .17s, border-left 0.20s;
}
ul.feature-grid li:hover, ul.value-icons li:hover, ul.feature-icons li:hover, ul.advantages-grid li:hover, ul.personalization-icons li:hover {
  box-shadow: 0 8px 28px 0 rgba(183,161,102,0.13);
  border-left: 4px solid #F4F4F4;
}
ul.feature-grid img, ul.feature-list img, ul.feature-icons img, ul.brand-values img, ul.value-icons img, ul.personalization-icons img {
  width: 38px;
  height: 38px;
}
@media (min-width: 768px) {
  ul.feature-grid, ul.feature-list, ul.feature-icons, ul.value-icons, ul.advantages-grid, ul.benefits-list, ul.brand-values, ul.personalization-icons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  ul.feature-grid li, ul.value-icons li, ul.feature-icons li, ul.advantages-grid li, ul.personalization-icons li, ul.brand-values li, ul.feature-list li {
    min-width: 250px;
    flex: 1 1 250px;
    margin-right: 0;
  }
}

/* ===============================================================================
  SERVICES CARDS & TABLES
================================================================================ */
.services {
  background: #181B23;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.service-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #232732;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(34,37,41,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 280px;
  position: relative;
  border: 1.5px solid #2B3140;
  transition: box-shadow .2s, border-color .20s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 28px 0 rgba(183,161,102,0.11);
  border-color: #B7A166;
  z-index: 2;
}
.service-card h3 {
  color: #B7A166;
  margin-bottom: 10px;
}
.service-card p {
  color: #E0E0E0;
  margin-bottom: 14px;
}
.service-price {
  color: #F4F4F4;
  font-weight: 600;
  letter-spacing: .03em;
  background: #393c44;
  border-radius: 4px;
  padding: 4px 12px;
  align-self: flex-end;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px 0 rgba(34,37,41,0.10);
  margin-top: 10px;
}
@media (max-width: 767px) {
  .service-list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

/* Service Table Styles */
.service-table {
  width: 100%;
  background: #232732;
  border-radius: 10px;
  font-size: 1rem;
  color: #F4F4F4;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(34,37,41,0.10);
}
.service-table th {
  background: #181B23;
  color: #B7A166;
  font-weight: 600;
  border-bottom: 2px solid #393c44;
}
.service-table td {
  border-bottom: 1px solid #32343D;
}
.service-table tr:last-child td {
  border: none;
}
.service-table tr:hover {
  background: #21242A;
}


/* =================================================================================
  TESTIMONIALS SECTION
================================================================================== */
.testimonials {
  background: #232732;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  color: #232732;
  border-radius: 12px;
  box-shadow: 0 4px 22px 0 rgba(34,37,41,0.14);
  margin-bottom: 20px;
  min-width: 225px;
  transition: box-shadow 0.17s, border 0.12s;
}
.testimonial-card p {
  color: #232732;
  font-size: 1.07rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-author {
  color: #181B23;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.040em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 30px 0 rgba(183,161,102,0.16);
  border-left: 3px solid #B7A166;
}
@media (min-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .testimonial-card {
    flex: 1 1 310px;
    margin-right: 0;
  }
}

/* ===============================================================================
  CONTACT DETAILS, FOOTER, GENERAL FRAMES
================================================================================ */
.contact-details {
  background: #232732;
  border-radius: 10px;
  padding: 28px 20px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #F4F4F4;
  box-shadow: 0 2px 10px 0 rgba(34,37,41,0.08);
}
.contact-details strong {
  color: #B7A166;
  font-weight: 600;
}

footer {
  background: #181B23;
  padding: 32px 0 20px 0;
  border-top: 1.5px solid #232732;
  margin-top: 60px;
  z-index: 1;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
}
.footer-brand span {
  color: #B7A166;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B7A166;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 9px;
  position: relative;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4F4F4;
}


/* ===============================================================================
  GENERAL CARDS, FLEX LAYOUTS (MANDATED CLASSES)
================================================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232732;
  color: #F4F4F4;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(24,27,35,0.08);
  position: relative;
  padding: 28px 20px;
  transition: box-shadow .19s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(183,161,102,0.13);
  border-left: 4px solid #B7A166;
}
.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;
}

/* Responsive flex directions */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* General spacing/margins for sections and cards */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > *, .content-grid > *, .service-list > *, .features .content-wrapper > *, .testimonials .content-wrapper > * {
  margin-bottom: 20px;
}

/* White space above & below major call to action */
@media (min-width: 960px) {
  .section, section {
    padding: 64px 0;
  }
}


/* ===============================================================================
  COOKIE CONSENT BANNER & MODAL
================================================================================ */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1b1e25;
  color: #F4F4F4;
  box-shadow: 0 -4px 24px 0 rgba(24,27,35,0.13);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 899;
  flex-direction: column;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 660px) {
  #cookie-banner {
    flex-direction: row;
    justify-content: center;
  }
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
}
.cookie-banner-text {
  color: #E0E0E0;
  font-size: 1rem;
  max-width: 550px;
}
#cookie-banner button {
  background: #232732;
  border: none;
  outline: none;
  color: #B7A166;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  margin: 0 7px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(34,37,41,0.13);
  transition: background 0.16s, color 0.11s;
}
#cookie-banner button.accept {
  background: #B7A166;
  color: #232732;
}
#cookie-banner button.reject {
  background: #232732;
  color: #B7A166;
  border: 1px solid #B7A166;
}
#cookie-banner button.settings {
  background: #393c44;
  color: #B7A166;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: #E1D2A0;
  color: #232732;
}

/* Cookie Preferences Modal */
#cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 60vh) scale(0.95);
  min-width: 300px;
  width: 92vw;
  max-width: 420px;
  background: #232732;
  color: #F4F4F4;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  z-index: 991;
  box-shadow: 0 12px 60px 0 rgba(24,27,35,0.23);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s, transform 0.32s cubic-bezier(.47,.01,.33,.96);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
#cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#cookie-modal h2 {
  color: #B7A166;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #393c44;
  border-radius: 10px;
  position: relative;
  margin-left: 12px;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 36px;
  height: 20px;
  position: absolute;
  top: 0; left: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-toggle .switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #B7A166;
  transition: left 0.2s, background 0.21s;
}
.cookie-toggle input:checked + .switch {
  left: 18px;
  background: #B7A166;
}
.cookie-toggle input:disabled + .switch {
  background: #A2A2A2;
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
#cookie-modal button {
  background: #B7A166;
  color: #232732;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1rem;
  padding: 8px 19px;
  transition: background 0.17s, color 0.11s;
  border: none;
  cursor: pointer;
}
#cookie-modal button.secondary {
  background: #232732;
  color: #B7A166;
  border: 1px solid #B7A166;
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: #E1D2A0;
  color: #232732;
}
#cookie-modal .close-btn {
  background: none;
  color: #DDD;
  font-size: 1.3rem;
  border: none;
  position: absolute;
  right: 18px;
  top: 12px;
  cursor: pointer;
}


/* ===============================================================================
  MICRO-INTERACTIONS & ACCESSIBILITY
================================================================================ */
a:focus, button:focus, .btn-primary:focus, input:focus, select:focus {
  outline: var(--focus-outline);
  outline-offset: 2px;
}
html:focus-within {
  scroll-behavior: smooth;
}
/* Subtle fade for image or card hover */
.card:hover img, .service-card:hover img, .testimonial-card:hover img {
  filter: brightness(1.15) contrast(1.08);
}

/* Button pressed states */
.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px 0 rgba(183,161,102,0.10);
}

/* Animate hero, services, testimonials in */
.hero, .services, .features, .testimonials, .contact-promo {
  animation: fadeup 0.95s cubic-bezier(.28,0,.51,1) 0s 1 both;
}
@keyframes fadeup {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:none; }
}

/* Misc utilities */
.mt-0 { margin-top:0 !important; }
.mb-0 { margin-bottom:0 !important; }
.mt-8 { margin-top:8px !important; }
.mb-8 { margin-bottom:8px !important; }
.mt-16 { margin-top:16px !important; }
.mb-16 { margin-bottom:16px !important; }

/* ===============================================================================
  RESPONSIVE BREAKPOINTS & FLEX ADJUSTMENTS
================================================================================ */
@media (max-width: 680px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .container { padding: 0 8px; }
  .hero, .contact-promo, .services, .features, .testimonials { margin-bottom: 38px; padding: 28px 8px; }
  .card { padding: 16px 10px; }
  .testimonial-card { gap: 10px; padding: 14px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1360px; }
}

/* Prevent overlapping for all major flex layouts */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 24px;
}
.card-container, .content-grid, .service-list, .features .content-wrapper {
  gap: 24px;
}

