/* 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #F8FAFB;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #F8FAFB;
  color: #192042;
  line-height: 1.6;
  font-size: 16px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@400;700&display=swap');

/* BRAND COLORS */
:root {
  --brand-primary: #143350;
  --brand-secondary: #EFD28D;
  --brand-accent: #F2F4F7;
  --brand-bg-soft: #F8FAFB;
  --pastel-blue: #dbeafe;
  --pastel-pink: #ffe4f0;
  --pastel-green: #d3f4e4;
  --pastel-yellow: #fff9d6;
  --pastel-violet: #ede9fb;
  --pastel-orange: #ffe8c7;
  --text-primary: #193350;
  --text-dark: #22323C;
  --text-light: #746575;
  --shadow-soft: 0 2px 12px 0 rgba(20,51,80,0.07);
  --card-radius: 20px;
  --btn-radius: 28px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.subheadline {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 18px;
  letter-spacing: 0.015em;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}
strong { font-weight: 700; }
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
  outline: none;
}

.text-section {
  margin-bottom: 20px;
}

/* LAYOUT: SECTIONS & WRAPPERS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 36px;
  }
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #e0e8f5 0%, #ffe4f0 60%, #e7f7f4 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 4px 28px 0 rgba(74, 105, 149, 0.06);
  position: relative;
  padding-top: 55px;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 28px;
    border-radius: 0 0 20px 20px;
  }
  .hero .content-wrapper {
    min-height: unset;
    padding-bottom: 16px;
  }
}

/***** HEADER & NAVIGATION *****/
header {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 14px 0 rgba(20,51,80,0.04);
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  transition: box-shadow 0.22s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
}
.logo img {
  max-height: 40px;
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(20,51,80,0.03));
  transition: filter 0.2s;
}
nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 1.08rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-secondary);
  background: none;
}

/* CTA BUTTONS (Primary/Secondary) */
.cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--btn-radius);
  padding: 12px 32px;
  font-size: 1.08rem;
  text-align: center;
  text-decoration: none;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(30,55,100,0.08);
  transition: background 0.21s, color 0.15s, box-shadow 0.21s, transform 0.13s;
}
.cta.primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,51,80,0.09);
}
.cta.primary:hover, .cta.primary:focus {
  background: #25476B;
  color: #FFD78A;
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  margin-left: 0;
  margin-top: 20px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F7E0A5;
  color: #143350;
  box-shadow: 0 4px 12px 0 rgba(239,210,141,0.15);
  transform: translateY(-2px) scale(1.03);
}

/***** MOBILE MENU (Hamburger) *****/
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 2.2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.16s, box-shadow 0.18s;
  z-index: 200;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-secondary);
}
@media (max-width: 992px) {
  nav.desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #e0e8f5 0%, #ffe4f0 60%, #e7f7f4 100%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.56,.01,.5,1), box-shadow 0.12s;
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  box-shadow: 0 2px 64px 0 rgba(44,70,110,0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  align-self: flex-end;
  margin: 24px 0 18px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: var(--brand-primary);
  font-weight: 600;
  padding: 8px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: #386689;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none;
  }
}

/***** SECTION GENERIC PATTERNS *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(34,34,100,0.12);
  transform: translateY(-5px) scale(1.018);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(20,51,80,0.08);
  margin-bottom: 20px;
  border: 1px solid #e8e7fa;
  min-width: 210px;
  max-width: 430px;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.09rem;
  margin-bottom: 14px;
  text-align: center;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.testimonial-card .stars {
  color: #ffd700;
  font-size: 1.18rem;
  letter-spacing: 1px;
}

/***** LISTS, FEATURES, SERVICES, PRICING *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-card {
  background: linear-gradient(110deg, #eaf0ff 0%, #fff7f8 100%);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(170,193,236,0.08);
  padding: 28px 24px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.17s, box-shadow 0.16s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-card img {
  max-width: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(20,51,80,0.05));
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card:hover {
  background: linear-gradient(110deg, #c9eafa 0%, #f6e3fb 100%);
  box-shadow: 0 6px 24px 0 rgba(120,180,230,0.12);
  transform: translateY(-4px) scale(1.03);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(20,51,80,0.07);
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 24px 22px 24px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
  margin-bottom: 20px;
}
.service-card img {
  max-width: 42px;
  margin-bottom: 8px;
}
.service-card .price {
  display: inline-block;
  background: var(--pastel-yellow);
  color: #7A570A;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 18px;
  margin-top: 14px;
  box-shadow: 0 1px 6px 0 rgba(239,210,141,0.09);
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(126,173,247,0.13);
  transform: translateY(-3px) scale(1.018);
}

/***** PROCESS TIMELINE (Ordered List) *****/
.process-timeline ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style-position: inside;
  margin-bottom: 20px;
}
.process-timeline li {
  font-size: 1.09rem;
  color: var(--text-dark);
  padding: 10px 16px 10px 6px;
  background: var(--pastel-violet);
  border-radius: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 8px 0 rgba(110,86,208,0.06);
  min-height: 46px;
}

/***** MAP PLACEHOLDER *****/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  background: var(--pastel-green);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 12px;
  margin-bottom: 6px;
  box-shadow: 0 1px 7px 0 rgba(54,204,179,0.07);
  color: var(--brand-primary);
}

/***** CONTACT INFO BLOCK *****/
.contact-info-block {
  background: var(--pastel-blue);
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 14px;
  color: var(--brand-primary);
  font-size: 1.08rem;
}
.contact-info-block a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-info-block a:hover {
  color: #3973ad;
}

/***** FOOTER *****/
footer {
  background: linear-gradient(110deg, #e0e8f5 0%, #ffe4f0 80%);
  border-radius: 36px 36px 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 16px 0 rgba(74, 105, 149, 0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  color: var(--brand-primary);
  opacity: 0.8;
  transition: color 0.15s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.98rem;
  color: var(--brand-primary);
}
.footer-info a {
  color: var(--brand-primary);
  transition: color 0.13s;
  text-decoration: underline;
}
.footer-info a:hover {
  color: #3973ad;
}

/***** RESPONSIVE BREAKPOINTS *****/
@media (max-width: 1140px) {
  .container {
    max-width: 99%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 926px) {
  .feature-grid, .service-list {
    gap: 18px;
  }
  .feature-card, .service-card {
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card, .service-card {
    min-width: unset;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 22px;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.78rem; }
  h2 { font-size: 1.28rem; }
  .hero {
    padding-top: 18px;
  }
}

/***** TESTIMONIALS *****/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}

/***** ANIMATIONS & INTERACTIONS *****/
.card, .feature-card, .service-card, .testimonial-card {
  will-change: box-shadow, transform;
  transition: box-shadow 0.19s, transform 0.14s;
}
.feature-card:active, .service-card:active, .testimonial-card:active {
  transform: scale(0.99) translateY(1px);
}

/***** MICROINTERACTIONS *****/
.cta:active {
  transform: scale(0.97) translateY(2px);
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #f3efe7 0% , #ffe4f0 100%);
  box-shadow: 0 -2px 20px 0 rgba(132, 94, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 10px 20px 10px;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s cubic-bezier(.43,0,.45,1), transform 0.32s cubic-bezier(.45,0,.49,1);
  font-size: 1.05rem;
  border-radius: 16px 16px 0 0;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-message {
  color: #4c4862;
  flex: 1 1 0;
  max-width: 440px;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 1.06rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(84,60,204,0.08);
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .accept:hover { background: #25476B; }
.cookie-banner .reject {
  background: #fff;
  color: #c13515;
  border: 1px solid #fde7eb;
}
.cookie-banner .reject:hover { background: #ffe4f0; color: #802931; }
.cookie-banner .settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
}
.cookie-banner .settings:hover { background: #f7e0a5; }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; gap: 12px; padding: 18px 2px 16px 2px; }
  .cookie-banner .cookie-actions { gap: 8px; flex-wrap: wrap; }
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,21,46,0.16);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: linear-gradient(120deg, #eaf0ff 0%, #ffe4f0 80%);
  border-radius: 18px;
  box-shadow: 0 6px 42px 0 rgba(56,61,119,0.12);
  padding: 38px 24px 24px 24px;
  min-width: 320px; max-width: 94vw; max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(.55,0,.46,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--brand-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2;
}
.cookie-modal-close:hover { color: #ce1476; }
.cookie-modal h2 {
  margin-top: 0;
  color: var(--brand-primary);
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 4px 0 rgba(122,98,209,0.03);
  padding: 14px 14px;
  font-size: 1.01rem;
}
.cookie-category .toggle {
  width: 36px; height: 20px;
  background: #e6e5f9;
  border-radius: 18px;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.13s;
  display: flex;
  align-items: center;
}
.cookie-category .toggle input[type=checkbox] {
  display: none;
}
.cookie-category .toggle .knob {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #dbeafe;
  position: absolute;
  left: 2px; top: 1px;
  box-shadow: 0 1px 3px 0 #ecebf4;
  transition: left 0.16s, background 0.13s;
}
.cookie-category .toggle input[type=checkbox]:checked + .knob {
  left: 16px;
  background: var(--brand-secondary);
}
.cookie-category.essential {
  opacity: 0.72;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 23px;
  padding: 8px 22px;
  font-size: 1.09rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(84,60,204,0.08);
  transition: background 0.15s;
}
.cookie-modal-actions .save {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-modal-actions .save:hover {
  background: #25476B;
}
.cookie-modal-actions .cancel {
  background: #fff;
  color: var(--brand-primary);
}
.cookie-modal-actions .cancel:hover {
  background: #ffe4f0;
}
@media (max-width: 440px) {
  .cookie-modal { padding: 32px 8px 16px 8px; min-width: 0; }
}

/***** UTILITY CLASSES & MISC *****/
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.float-right { float: right; }

/***** SPACING GAPS FOR FLEXBOX LAYOUTS *****/
.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;
}

/***** FOCUS VISIBLE *****/
*:focus-visible {
  outline: 2px solid var(--brand-secondary) !important;
  outline-offset: 2px;
}

/***** DREAMY ATMOSPHERE: SOFT SHADOWS & ROUNDS *****/
.card, .feature-card, .service-card, .testimonial-card, .cookie-banner,
.cookie-modal, .contact-info-block, .map-placeholder {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

/***** SCROLLBARS THEME *****/
::-webkit-scrollbar { width: 10px; background: #e7e5f7; border-radius: 8px; }
::-webkit-scrollbar-thumb { background: #dbeafe; border-radius: 8px; }

/***** END OF STYLE.CSS *****/
