/* ==== 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4F4F5;
  color: #232C34;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
a {
  color: #1A4866;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #599DAD;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F4F4F5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1A4866;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
.subtitle {
  color: #599DAD;
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
p, .text-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}
blockquote.tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #1A4866;
  background: #EAF2FA;
  border-left: 5px solid #599DAD;
  font-weight: 700;
  margin: 16px 0 24px 0;
  padding: 16px 20px;
  border-radius: 10px;
}

/* ==== BRAND COLORS ==== */
:root {
  --primary: #1A4866;
  --secondary: #599DAD;
  --accent: #F4F4F5;
  --highlight: #fbbe2c;
  --danger: #c54248;
  --success: #37b17b;
  --white: #fff;
  --shadow: rgba(26,72,102, 0.09);
}


/* ==== COMMON UTILITY CLASSES ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 10px;
  }
}


/* ==== HEADER AND NAVIGATION ==== */
header {
  background: var(--primary);
  box-shadow: 0 4px 22px var(--shadow);
  position: relative;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 28px;
}
.main-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 6px;
  transition: color 0.18s;
  letter-spacing: 0.02em;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--highlight);
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
  background: var(--secondary);
  border: none;
  border-radius: 32px;
  padding: 12px 42px;
  margin-left: 32px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--highlight);
  box-shadow: 0 4px 20px 0 var(--shadow), 0 0 0 3px var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: 24px;
  z-index: 1102;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU OVERLAY ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.7, 0.2, 0.3, 1);
  z-index: 1101;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 1200;
  line-height: 1;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin-top: 40px;
  padding-left: 0;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  padding: 17px 34px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--highlight);
  background: #244e6a;
}
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(145deg, var(--secondary) -20%, var(--primary) 100%);
  color: var(--accent);
  padding: 72px 0 64px 0;
  box-shadow: 0 2px 30px -10px var(--shadow);
  margin-bottom: 60px;
}
.hero .content-wrapper h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero .subtitle {
  color: #fbbe2c;
  font-size: 1.35rem;
  margin-bottom: 32px;
}
.hero .cta-btn {
  background: var(--highlight);
  color: var(--primary);
  font-size: 1.18rem;
  padding: 16px 52px;
  font-weight: 900;
  margin-left: 0;
}
.hero .cta-btn:hover {
  background: #fff055;
  color: var(--primary);
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 28px 0;
    margin-bottom: 32px;
  }
  .hero .content-wrapper h1 {
    font-size: 2rem;
  }
}

/* ==== GRID UTILITY ==== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ====== FEATURES ====== */
.features {
  background: var(--white);
  padding: 0;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  justify-content: space-between;
}
.feature-item {
  flex: 1 1 220px;
  min-width: 220px;
  background: #F0F7FA;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.13s, box-shadow 0.13s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature-item h3 {
  color: var(--primary);
  font-size: 1.18rem;
}
.feature-item p {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232C34;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px -4px var(--secondary);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
  }
}

/* ====== SERVICE CARDS ====== */
.services-overview .service-cards,
.service-details .service-list,
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.service-card,
.benefit-item,
.value-item {
  background: #FFF;
  border-radius: 16px;
  padding: 24px 22px 18px 22px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.15s, transform 0.13s;
}
.service-card:hover,
.benefit-item:hover,
.value-item:hover {
  transform: translateY(-4px) scale(1.027);
  box-shadow: 0 10px 32px -4px var(--secondary);
}
.service-card h3,
.benefit-item h3,
.value-item h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.price {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  background: #EAF2FA;
  padding: 3px 18px;
  border-radius: 14px;
  display: inline-block;
  font-size: 0.97rem;
  margin-top: 12px;
}
.services-overview .cta-btn {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .services-overview .service-cards, .benefits-list, .service-details .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* SERVICE BENEFITS ITEMS */
.benefit-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

/* ====== PROCESS STEPPER ====== */
.process-stepper, .step-list {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 24px 0 14px 0;
}
.process-stepper li, .step-list li {
  background: #F0F7FA;
  border-radius: 13px;
  padding: 22px 18px;
  min-width: 180px;
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--shadow);
  font-weight: 600;
}
.process-stepper li strong, .step-list li strong {
  color: var(--primary);
  font-family: 'Montserrat';
  font-size: 1.05rem;
}
@media (max-width: 800px) {
  .process-stepper, .step-list {
    flex-direction: column;
    gap: 18px;
  }
}

.step-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: #fff;
  padding-top: 32px;
  padding-bottom: 40px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F9FC;
  border-left: 6px solid var(--secondary);
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  font-size: 1.07rem;
  color: #1b2835;
  flex: 1 1 290px;
  min-width: 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 var(--secondary);
  transform: scale(1.025);
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
}
.customer {
  display: block;
  font-size: 0.98rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-left: 12px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

/* HOW IT WORKS FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 16px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #eaf2fa;
  color: var(--primary);
  font-weight: 800;
  padding: 13px 22px 12px 18px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 1px 3px var(--shadow);
  cursor: pointer;
  transition: background 0.13s;
  font-size: 1.09rem;
}
.faq-accordion dd {
  background: #fff;
  color: #1b2835;
  padding: 13px 18px;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid #e6e8eb;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.faq-accordion dt:hover {
  background: #d7effa;
}

/* ====== CARDS AND VALUE ITEMS ====== */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.value-item {
  flex: 1 1 220px;
  min-width: 200px;
  background: #f0f7fa;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.13s, box-shadow 0.13s;
}
.value-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .values-list {
    gap: 14px;
    flex-direction: column;
  }
}

/* ====== TEAM LIST ====== */
.team-list {
  list-style-type: none;
  padding-left: 0;
  margin: 16px 0 20px 0;
}
.team-list li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  font-size: 1.06rem;
}

/* ====== PRICING TABLES ====== */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 32px 0 12px 0;
  background: #fff;
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 16px;
}
.pricing-table caption {
  caption-side: top;
  text-align: left;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 8px 0;
}
.pricing-table thead th {
  background: #EAF2FA;
  color: var(--primary);
  padding: 15px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 3px solid var(--secondary);
}
.pricing-table td {
  padding: 17px 16px;
  color: #1b2835;
  font-size: 1.05rem;
  border-bottom: 1px solid #ecf3f8;
}
.pricing-table tr:last-child td {
  border: none;
}
@media (max-width: 740px) {
  .pricing-table thead, .pricing-table caption {
    display: none;
  }
  .pricing-table tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #EAF2FA;
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: 0 1px 4px var(--shadow);
  }
  .pricing-table td {
    padding: 12px 10px;
    border: none;
  }
}

/* ====== LAYOUT/SECTION SPACING ====== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 32px;
    padding: 26px 0 14px 0;
  }
}

/* ====== FOOTER ====== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 18px 0;
  text-align: center;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--highlight);
}
footer p {
  color: var(--accent);
  font-size: 0.96rem;
  opacity: 0.85;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 -3px 24px var(--shadow);
  border-top: 3px solid var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 20px 12px 18px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: cookieAppear 0.7s cubic-bezier(0.6,0.1,0.5,1);
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
@keyframes cookieAppear {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0;
  color: #1A4866;
  flex: 1 1 240px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn, .cookie-banner .cookie-btn {
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: var(--success);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #269164;
  box-shadow: 0 2px 10px var(--shadow);
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b12435;
  box-shadow: 0 2px 10px var(--shadow);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: var(--highlight);
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1998;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,45,82,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 60px 0 var(--shadow);
  max-width: 430px;
  width: 92vw;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  z-index: 1999;
  position: relative;
  animation: cookieModalShow 0.4s cubic-bezier(.6,0,.4,1);
}
@keyframes cookieModalShow {
  from { transform: scale(0.92) translateY(40px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: 'Open Sans';
  border-bottom: 1px dashed #eaeaea;
}
.cookie-modal .cookie-category:last-child {
  border: none;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat';
  font-weight: 800;
  color: var(--primary);
  font-size: 1.04rem;
}
.cookie-modal-toggle {
  width: 48px;
  height: 26px;
  background: #EAF2FA;
  border-radius: 18px;
  position: relative;
  transition: background 0.16s;
  border: 1px solid #eaeaea;
  margin-left: 16px;
  cursor: pointer;
}
.cookie-modal-toggle input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal-toggle .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal-toggle input[type=checkbox]:checked + .slider {
  left: 24px;
  background: var(--primary);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.66rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 20px;
  padding: 8px 24px;
}

/* ====== CONTACT & MAP ====== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}
.contact-info {
  flex: 1 1 350px;
  background: #F0F7FA;
  border-radius: 14px;
  padding: 25px 18px;
  font-size: 1.08rem;
  color: #1A4866;
  min-width: 220px;
}
.location-map {
  flex: 1 1 210px;
  border-radius: 14px;
  background: #EAF2FA;
  padding: 20px 12px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 800px) {
  .contact-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ====== FEATURE/CLIENT LISTS ====== */
.feature-list {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 9px;
  font-size: 1.03rem;
  padding-left: 22px;
  position: relative;
}
.feature-list li:before {
  content: '\2022';
  color: var(--secondary);
  font-size: 1.26em;
  position: absolute;
  left: 0;
  top: 0.7em;
  line-height: 0;
  transform: translateY(-45%);
}

/* ====== GENERAL LISTS & DL ====== */
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 18px;
}
dd {
  margin-left: 18px;
  margin-bottom: 3px;
  color: #2d4458;
  font-size: 1rem;
}

/* ====== CONFIRMATION ====== */
.confirmation-section .cta-btn {
  margin-top: 22px;
}

/* ====== MODERN-BOLD GEOMETRIC ELEMENTS ====== */
/* Use subtle geometric accent, not to visually clutter */
.section, .card, .service-card, .feature-item, .benefit-item, .testimonial-card {
  border-radius: 20px;
  box-shadow: 0 4px 18px -4px var(--shadow);
}

/* ====== MICRO-INTERACTIONS & TRANSITIONS ====== */
.cta-btn, .service-card, .feature-item, .testimonial-card, .benefit-item, .value-item, .card {
  transition: box-shadow 0.15s, transform 0.13s, background 0.12s, color 0.12s;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* ====== RESPONSIVE LAYOUT ====== */
@media (max-width: 760px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}

/* ===== REMOVE EXTRA-MOBILE PADDING ===== */
@media (max-width: 480px) {
  .section {
    padding: 11px 2px;
  }
  .cta-btn {
    padding: 11px 16px;
    font-size: 1rem;
  }
  .service-card, .feature-item, .testimonial-card, .benefit-item {
    padding: 12px 8px;
  }
}

/* === MISCELLANEOUS === */
.text-section {
  margin-bottom: 18px;
  padding: 9px 2px;
}
.overview {
  color: var(--secondary);
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-top: 18px;
}

/* === Z-INDEX SAFEGUARD === */
header,
.mobile-menu,
.mobile-menu-toggle,
.cookie-banner,
.cookie-modal-backdrop,
.cookie-modal {
  z-index: 9999;
}

/* ==== UTILITIES ==== */
.hide { display: none !important; }

/* === END === */
