/* ---------------------------------------------------------
   CSS RESET & BASE TYPOGRAPHY
--------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFBFD;
  color: #1F375A;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #2EC4B6;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.47,1.64,.41,.8);
}
a:hover, a:focus {
  color: #FFD166;
  text-decoration: underline;
  outline: none;
}

/* Artistic Headings & Display Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1F375A;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 6px 18px rgba(46,196,182,0.13);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

p, ul, li {
  font-size: 1rem;
  color: #33425B;
}

strong, b {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.confirmation-wrapper {
  align-items: center;
  text-align: center;
  padding: 60px 10px 40px 10px;
}

.map-placeholder {
  background: #fffbe7;
  border: 2px dashed #FFD166;
  color: #B19623;
  font-size: 1rem;
  text-align: center;
  padding: 34px 16px;
  margin-bottom: 24px;
  border-radius: 18px;
  font-style: italic;
}

/* ---------------------------------------------------------
   HEADER & MAIN NAVIGATION (Desktop)
--------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px -6px rgba(31,55,90,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1F375A;
  padding: 9px 13px;
  border-radius: 8px;
  transition: 
    color 0.15s,
    background 0.2s,
    box-shadow 0.24s cubic-bezier(.47,1.64,.41,.8);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 4px 22px -2px #2EC4B622;
  outline: none;
}
.main-nav .btn-primary {
  background: #FFD166;
  color: #1F375A !important;
  font-weight: 600;
  border-radius: 11px;
  box-shadow: 0 2px 7px 0 #FFD16644;
  padding: 10px 18px;
  margin-left: 14px;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #2EC4B6;
  color: #fff !important;
  box-shadow: 0 4px 35px -4px #2EC4B666;
}
header img {
  height: 44px;
  margin-right: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: #FFD166;
  color: #1F375A;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 2px 16px 4px 16px;
  margin-left: 14px;
  transition: background 0.2s, color 0.17s, box-shadow 0.15s;
  box-shadow: 0 1.5px 8px 0 #FFD16634;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 3px 18px -2px #2EC4B644;
  outline: none;
}

/* ---------------------------------------------------------
   HERO SECTIONS & CALL TO ACTION
--------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #FFD166 0%, #fff 65%, #2EC4B6 100%);
  padding: 65px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  z-index: 2;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #1F375A;
  font-size: 2.2rem;
  max-width: 750px;
}
.hero p {
  color: #1F375A;
  max-width: 570px;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cta-section {
  background: #2EC4B6;
  padding: 44px 12px 44px 12px;
  border-radius: 32px 32px 0 0;
  margin-bottom: 0;
  box-shadow: 0 -2px 40px 0 #1F375A0c;
}
.cta-section h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.cta-section .btn-primary,
.cta-section .btn-secondary {
  margin-top: 10px;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: #FFD166;
  color: #1F375A !important;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 14px 0 #FFD16644;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
  margin: 7px 0 0 0;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #2EC4B6;
  color: #fff !important;
  box-shadow: 0 7px 28px -7px #2EC4B677;
}

.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: #1F375A;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 14px 0 #1F375A44;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
  margin: 8px 0 0 0;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #FFD166;
  color: #1F375A !important;
  box-shadow: 0 7px 28px -7px #FFD16677;
}

/* ---------------------------------------------------------
   CREATIVE CARDS, FLEX CARDS & FEATURES
--------------------------------------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  padding: 28px 20px 24px 20px;
  min-width: 218px;
  flex: 1 1 220px;
  box-shadow: 0 7px 22px 0 #FFD16613, 0 2px 6px #2EC4B611;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(.47,1.64,.41,.8), transform 0.16s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 6px 22px #2EC4B633);
}
.feature-item h3 {
  color: #1F375A;
  font-size: 1.19rem;
  letter-spacing: 0.013em;
}
.feature-item:hover {
  box-shadow: 0 12px 38px -10px #FFD16655, 0 4px 20px 0 #2EC4B644;
  transform: translateY(-3px) scale(1.035);
  z-index: 2;
}

.service-cards,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.service-card {
  background: #fff;
  border-radius: 19px;
  padding: 30px 20px 32px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px 0 #2EC4B614, 0 2px 5px #FFD16612;
  min-width: 230px;
  flex: 1 1 246px;
  transition: box-shadow 0.19s cubic-bezier(.47,1.64,.41,.8), transform 0.16s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-price {
  color: #2EC4B6;
  background: #FAFBFD;
  font-weight: 700;
  margin-top: 16px;
  padding: 5px 13px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
}
.service-card:hover {
  box-shadow: 0 8px 30px -8px #FFD16688, 0 4px 13px #2EC4B644;
  transform: scale(1.03);
  z-index: 2;
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 17px;
  margin-bottom: 20px;
  box-shadow: 0 5px 22px #2EC4B618;
  padding: 30px 22px 28px 22px;
  position: relative;
}

.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;
}
.text-image-section img {
  border-radius: 13px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Testimonials */

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 17px;
  box-shadow: 0 2px 9px #FFD16644;
  margin-bottom: 20px;
  margin-top: 8px;
  font-size: 1.08rem;
  position: relative;
  max-width: 740px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card p {
  color: #1F375A;
  font-size: 1.11rem;
  margin-bottom: 7px;
  font-style: italic;
}
.testimonial-card .testimonial-author {
  color: #2EC4B6;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.97rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFD166;
}
.testimonial-card:hover {
  box-shadow: 0 7px 38px -10px #FFD16660, 0 2px 20px #2EC4B644;
  transform: scale(1.018);
  z-index: 2;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  background: #1F375A;
  color: #fff;
  width: 100%;
  margin-top: 80px;
  padding: 44px 0 28px 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
footer img {
  height: 44px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 7px;
  font-size: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD166;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.17s, text-decoration 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #2EC4B6;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  color: #fff;
  opacity: 0.93;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px #FFD16655);
}
.footer-contact div {
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------
   MOBILE MENU OVERLAY
--------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,55,90,0.93);
  transform: translateX(-100vw);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  color: #FFD166;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 30px;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 1000;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #2EC4B6;
  outline: none;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 90px 28px 30px 42px;
  width: 100vw;
}
.mobile-menu .mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.33rem;
  padding: 10px 0 10px 0;
  border-radius: 9px;
  transition: background 0.18s, color 0.14s;
  width: 92vw;
  display: block;
  line-height: 1.4;
}
.mobile-menu .mobile-nav a:hover,
.mobile-menu .mobile-nav a:focus {
  background: #2EC4B6;
  color: #FFD166;
}

/* Hide mobile menu by default */
.mobile-menu, .mobile-menu.open {
  display: block;
}

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

@media (max-width: 999px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN (Mobile-First, flex-wrap + direction)
--------------------------------------------------------- */
@media (max-width: 920px) {
  .hero {
    padding: 44px 0 28px 0;
  }
  .features-grid,
  .service-cards,
  .service-list,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item,
  .service-card {
    min-width: 0;
    width: 100%;
    padding: 21px 15px 22px 15px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 15px;
  }
  .cta-section {
    border-radius: 0;
    padding: 24px 8px 24px 8px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.22rem;}
  .hero .content-wrapper {gap: 11px;}
  .hero {padding: 24px 0 18px 0;}
  .container {padding: 0 8px;}
  .footer-nav {gap: 16px; font-size: 0.95rem;}
  .footer-contact {font-size: 0.97em;}
  .content-wrapper.text-section, .text-section {padding: 0 2px;}
  .confirmation-wrapper {padding: 35px 5px 25px 5px;}
  .section {padding: 23px 7px;}
}
@media (max-width: 500px) {
  h1 {font-size: 1.17rem;}
  .hero .content-wrapper h1, .hero h1 {font-size: 1.19rem;}
  .service-card,.feature-item {padding: 18px 7px;}
}
@media (max-width: 650px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 15px;
    align-items: center;
  }
}

/* Hamburger only visible under 1000px: already set above */

/* ---------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1F375A;
  color: #FFD166;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 15px 18px 24px;
  box-shadow: 0 -7px 35px 0 #1F375A55;
  z-index: 1600;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8), opacity 0.33s;
  font-size: 1.06rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 11px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 3px;
  margin-top: 3px;
  cursor: pointer;
  box-shadow: 0 3px 15px #FFD16622, 0 1px 4px #2EC4B633;
  transition: background 0.19s, color 0.16s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #FFD166;
  color: #1F375A;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #2EC4B6;
  color: #fff;
}
.cookie-banner .reject {
  background: #2EC4B6;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #FFD166;
  color: #1F375A;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFD166;
  border: 1.5px solid #FFD166;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #FFD166;
  color: #1F375A;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(31,55,90,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.cookie-modal {
  background: #fffbe7;
  border-radius: 21px;
  padding: 38px 26px 34px 26px;
  max-width: 390px;
  box-shadow: 0 12px 45px 0 #FFD16677, 0 2px 12px #2EC4B633;
  color: #1F375A;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  animation: cookieModalPop 0.44s cubic-bezier(.26,1.43,.34,1) 1;
}
@keyframes cookieModalPop {
  0% { transform: scale(0.85) translateY(20px); opacity: 0; }
  95% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1.0); opacity: 1; }
}
.cookie-modal h2 {
  color: #1F375A;
  font-size: 1.24rem;
  font-weight: 800;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 11px;
}
.cookie-cat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  color: #1F375A;
  font-weight: 700;
}
.cookie-cat-toggle {
  width: 42px;
  height: 22px;
  background: #FFD16688;
  border-radius: 13px;
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-left: 9px;
  transition: background 0.13s;
}
.cookie-cat-toggle[aria-checked="true"] {
  background: #2EC4B6;
}
.cookie-cat-toggle .cookie-cat-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px #FFD16633;
  transition: left 0.18s;
}
.cookie-cat-toggle[aria-checked="true"] .cookie-cat-slider {
  left: 23px;
  background: #FFD166;
}
.cookie-category[aria-disabled="true"] .cookie-cat-toggle {
  background: #e2e2e3;
  opacity: 0.56;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal .btn-modal-close {
  font-size: 1.05rem;
  background: transparent;
  color: #2EC4B6;
  border: none;
  padding: 7px 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: underline;
}
.cookie-modal .btn-modal-close:hover {color:#FFD166}

/* ---------------------------------------------------------
   ARTISTIC STYLE UNIQUE ELEMENTS & EFFECTS
--------------------------------------------------------- */
/* Color splash shape behind headings for artistic flair  */
h1, h2 {
  position: relative;
  z-index: 1;
}
h2::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  left: -18px; top: 14px;
  width: 44px; height: 24px;
  background: #FFD16644;
  border-radius: 30px 44px 30px 55px / 49px 44px 20px 20px;
  transform: rotate(-11deg);
}
@media (max-width: 768px) {
  h2::before { left: -6px; top:14px; width: 29px; height:14px; }
}

.btn-primary::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -11px; left: 25%;
  width: 40%; height: 3px;
  background: #FFD16688;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.19s, bottom 0.12s;
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-primary:focus::after {
  opacity: 1;
}

/* Artistic underline for links in text-section */
.text-section a {
  position: relative;
  color: #2EC4B6;
  font-weight: 600;
}
.text-section a::after {
  content: '';
  display: block;
  height: 3px;
  width: 70%;
  background: #FFD166;
  position: absolute;
  left: 0; bottom: -1px;
  border-radius: 2px;
  opacity: 0.7;
  transition: width 0.17s;
}
.text-section a:hover::after {
  width: 100%;
}

/* Artistic list bullets */
.text-section ul li, .content-wrapper.text-section ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.text-section ul li::before {
  content: '';
  width: 13px;
  height: 13px;
  background: #2EC4B6;
  border-radius: 7px;
  display: inline-block;
  position: absolute;
  left: 0; top: 4px;
  box-shadow: 0 2px 4px #1F375A22;
}

/* ---------------------------------------------------------
   FORM ELEMENTS (if in contact forms on future pages)
--------------------------------------------------------- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: #1F375A;
  background: #FAFBFD;
  border: 1.8px solid #2EC4B6;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.13s, box-shadow 0.15s;
  margin-bottom: 18px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #FFD166;
  box-shadow: 0 2px 15px #FFD16633;
}
button, [type="submit"] {
  cursor: pointer;
}

/* ---------------------------------------------------------
   ACCESSIBILITY & INTERACTION
--------------------------------------------------------- */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2.5px solid #FFD166;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #BFCAD4; }
::-moz-placeholder { color: #BFCAD4; }
:-ms-input-placeholder { color: #BFCAD4; }
::placeholder { color: #BFCAD4; }

/* ---------------------------------------------------------
   SPACING, MARGINS (as per strict instructions)
--------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* ---------------------------------------------------------
   Z-INDEX SAFETY for ALL MODALS, MOBILE, COOKIES
--------------------------------------------------------- */
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 1600;
}

/* ---------------------------------------------------------
   PRINT STYLE (optional, for privacy/legal pages)
--------------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner {display:none !important;}
  main, .content-wrapper, .section {box-shadow:none !important; background:#fff !important;}
}

/* ----- THE END ----- */
