/* ===== CSS RESET & BASE ===== */
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,
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;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F3F5F7;
  color: #184766;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border: 0; }
a { color: #1589A6; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #184766; text-decoration: underline; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1.5px solid #E4E8ED; margin: 24px 0; }
input, button { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --color-primary: #184766;
  --color-secondary: #ffffff;
  --color-accent: #1589A6;
  --color-secondary-bg: #F3F5F7;
  --color-dark: #184766;
  --color-light: #ffffff;
  --color-grey: #E4E8ED;
  --color-heading: #184766;
  --color-body: #184766;
  --color-link-accent: #1589A6;
  --shadow-card: 0 2px 16px 0 rgba(24, 71, 102, 0.10);
  --border-radius: 20px;
  --transition: all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  text-wrap: balance;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 { font-size: 1.1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 18px; }

@media (max-width: 991px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
}

/* ===== CONTAINERS & BASIC LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 28px 10px; margin-bottom: 38px; }
  .content-wrapper { gap: 16px; }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--color-light);
  box-shadow: 0 2px 16px 0 rgba(24, 71, 102, 0.035);
  position: relative;
  z-index: 120;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px;
}
.logo {
  height: 48px; display: flex; align-items: center;
}
.logo img { height: 46px; width: auto; filter: drop-shadow(0 2px 8px rgba(24,71,102,.09)); }
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 0 8px 0;
  transition: var(--transition);
  border-bottom: 2.5px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.cta.primary, .cta.accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  margin-left: 26px;
  background: var(--color-primary);
  color: var(--color-light)!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 999px;
  font-size: 1.08rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(24,71,102,0.07);
  transition: var(--transition);
  outline: none;
}
.cta.accent {
  background: var(--color-accent);
}
.cta.primary:hover, .cta.accent:hover, .cta.primary:focus, .cta.accent:focus {
  background: #12627C;
  color: #fff!important;
}

button.cta { border: none; }

.mobile-menu-toggle {
  display: none;
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 2.3rem;
  border: none;
  border-radius: 10px;
  padding: 4px 10px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary-bg);
}

@media (max-width: 991px) {
  .cta.primary, .cta.accent { margin-left: 8px; padding: 12px 24px; font-size: 15px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; align-items: center; gap: 0; }
  .main-nav, .cta.primary, .cta.accent { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .logo img { height: 39px; }
}
/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-light);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  border: none;
  background: none;
  color: var(--color-primary);
  align-self: flex-end;
  margin: 10px 24px 18px 0;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 12px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary-bg);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 12px 0;
  width: 100%;
  border-bottom: 2px solid #E4E8ED;
  transition: color .22s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
}

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(110deg, #fff 65%, #1589A610 120%);
  padding: 64px 0 48px;
  min-height: 310px;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 25px;
  max-width: 720px;
}
.hero h1 { font-size: 2.5rem; }
.hero p { font-size: 1.2rem; max-width: 520px; }
@media (max-width: 900px) {
  .hero { padding: 40px 0 35px; }
  .hero h1 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .hero { padding: 20px 0 15px; border-radius: 0 0 30px 30px; margin-bottom: 30px; }
  .hero .content-wrapper { gap: 16px; }
  .hero p { font-size: 1.06rem; }
}

/* ===== FEATURES / CARDS / FLEXIBLE LAYOUTS ===== */
.features, .benefits, .feature-grid, .benefits-grid, .step-grid, .case-studies {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid, .benefits-grid, .step-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .benefit, .step {
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 28px 24px;
  min-width: 180px;
  flex: 1 1 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .20s, transform .2s;
  margin-bottom: 20px;
}
.feature img, .benefit img, .step img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}
.feature:hover, .benefit:hover, .step:hover {
  box-shadow: 0 8px 32px 0 rgba(24, 71, 102, 0.17),0 1px 8px 0 rgba(21,137,166,0.10);
  transform: translateY(-2px) scale(1.027);
}
@media (max-width: 992px) {
  .feature-grid, .benefits-grid, .step-grid { flex-direction: column; gap: 20px; }
  .feature, .benefit, .step { min-width: auto; width: 100%; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .14s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover { box-shadow: 0 8px 30px 0 rgba(24,71,102,0.17); transform: scale(1.022); }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 14px; }
}

.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; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== TESTIMONIALS & REVIEWS ===== */
.testimonials, .testimonials-projects {
  background: var(--color-secondary-bg);
  padding: 50px 0 35px 0;
  margin-bottom: 50px;
  border-radius: 32px;
}
.testimonials .content-wrapper, .testimonials-projects .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--color-accent);
  transition: box-shadow .17s, border-color 0.2s;
  font-size: 1.06rem;
}
.testimonial-card p {
  color: #184766;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.45;
}
.testimonial-card strong {
  color: var(--color-accent);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(21,137,166,0.20);
  border-left-color: #184766;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-study {
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-study h3 { color: var(--color-accent); font-size: 1.11rem; font-weight: 700; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  margin: 70px 0 32px 0;
  padding: 42px 14px 32px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 18px 0 rgba(24,71,102,.18);
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 800;
}
.cta-banner a.cta.accent {
  margin: 0;
  background: var(--color-accent);
  color: #fff;
}
.cta-banner a.cta.primary {
  margin: 0;
}

@media (max-width: 768px) {
  .cta-banner { padding: 24px 8px 18px 8px; margin: 32px 0 18px 0; }
}

/****** ABOUT PAGE: PARTNERS & LOGOS ******/
.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 12px;
}
.partner-logos img {
  width: 62px; height: auto;
}

/****** FAQ Styles ******/
.faq-section {
  margin-bottom: 60px; padding: 40px 20px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 1px 8px 0 rgba(24,71,102,0.04);
  transition: box-shadow .12s;
  margin-bottom: 8px;
}
.faq-item h2 {
  color: var(--color-accent);
  font-size: 1.14rem;
  margin-bottom: 5px;
  font-weight: 800;
}
.faq-item p {
  color: #184766;
  font-size: 0.99rem;
}
.quick-links {
  margin-top: 14px;
}
.quick-links ul { display: flex; flex-direction: row; gap: 14px; margin-top: 8px; }
.quick-links a {
  background: var(--color-secondary-bg);
  color: var(--color-accent);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background .18s;
}
.quick-links a:hover, .quick-links a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 700px) {
  .faq-section { padding: 18px 2px; margin-bottom: 28px; }
  .faq-accordion { gap: 8px; }
  .faq-item { padding: 13px 10px 10px 10px; }
  .quick-links ul { flex-direction: column; gap: 8px; }
}

/***** CONTACT PAGE *****/
.contact-info {
  margin-bottom: 38px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cta-area {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.map-section {
  margin-bottom: 38px;
  padding: 32px 18px;
  background: var(--color-secondary-bg);
  border-radius: var(--border-radius);
}

/***** THANK YOU PAGE *****/
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.thank-you-section ul { text-align: left; margin: 18px auto 20px auto; max-width: 440px; }
.thank-you-section a.cta.accent {
  background: var(--color-accent);
  color: #fff;
}

/***** LEGAL SECTIONS *****/
.legal-section, .legal-gdpr, .terms-section, .cookie-section {
  margin-bottom: 45px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
.legal-section h2, .legal-gdpr h2, .terms-section h2, .cookie-section h2 {
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 8px;
}
.legal-section h3, .legal-gdpr h3, .terms-section h3, .cookie-section h3 {
  color: #4F7BA1;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.legal-section ul, .legal-gdpr ul, .terms-section ul, .cookie-section ul { margin: 0 0 16px 24px; list-style: disc; }

/****** FOOTER ******/
footer {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  margin-top: 40px;
  border-radius: 36px 36px 0 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 16px 16px 16px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .18s;
  opacity: 0.88;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  font-size: 0.99rem;
  color: #fff;
  opacity: 0.90;
  text-align: center;
}
@media (max-width: 700px) {
  footer .container { padding: 20px 2px 14px 2px; }
  .footer-nav { gap: 12px; font-size: .92rem; }
}

/***** COOKIE BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: #184766;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  padding: 28px 25px 24px 25px;
  box-shadow: 0 -4px 32px 0 rgba(24,71,102,0.15);
  border-radius: 20px 20px 0 0;
  font-size: 1.05rem;
  transition: transform 0.31s;
}
.cookie-banner.hide { transform: translateY(120%); }
.cookie-banner p {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 21px;
  border: none;
  border-radius: 888px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .14s;
}
.cookie-banner .accept { background: var(--color-accent); color: #fff; }
.cookie-banner .accept:hover { background: #184766; color: #fff; }
.cookie-banner .reject {
  background: #fff;
  color: #184766;
  border: 2px solid var(--color-accent);
}
.cookie-banner .reject:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover {
  background: #fff;
  color: #184766;
}
@media (max-width:600px) {
  .cookie-banner { flex-direction: column; padding: 18px 8px 14px 8px; gap: 12px; font-size: .95rem; }
  .cookie-banner .cookie-btns { flex-direction: column; gap: 7px; width: 100%; }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,71,102,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #fff;
  width: 95vw;
  max-width: 430px;
  border-radius: 18px;
  padding: 34px 28px 23px 28px;
  box-shadow: 0 8px 32px 0 rgba(21,137,166,0.17);
  color: #184766;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalSlide .28s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalSlide {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #1589A6;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  background: #F3F5F7;
  padding: 9px 12px;
  border-radius: 9px;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #1589A6;
  width: 22px; height: 22px;
}
.cookie-category input:disabled {
  opacity: 0.55;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 888px;
  padding: 11px 18px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .14s;
}
.cookie-modal .accept { background: var(--color-accent); color: #fff; }
.cookie-modal .accept:hover { background: #184766; }
.cookie-modal .reject {
  background: #fff;
  color: #184766;
  border: 2px solid var(--color-accent);
}
.cookie-modal .reject:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-modal .close {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid #1589A6;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #E4E8ED;
  color: #184766;
}
@media (max-width:500px) {
  .cookie-modal { padding: 17px 4px 15px 8px; max-width:95vw; }
  .cookie-modal h2 { font-size: 1.11rem; }
}

/***** ANIMATION for micro-interactions *****/
.cta.primary, .cta.accent, .feature, .benefit, .step, .card, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a, .cookie-banner button,
.cookie-modal button {
  transition: var(--transition);
}

/***** SPACING Utility Classes ******/
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.pt-2 { padding-top: 16px !important; }
.pb-2 { padding-bottom: 16px !important; }

/***** FLEX UTILITY for custom uses *****/
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.space-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
@media (max-width: 768px) {
  .flex-row { flex-direction: column; }
}

/***** NO GRID, ONLY FLEX layouts everywhere ******/

/* ===== BRAND FOCUS COLOR CLASSES ===== */
.bg-primary { background: var(--color-primary); color: #fff; }
.bg-accent { background: var(--color-accent); color: #fff; }
.bg-secondary { background: var(--color-secondary-bg); color: var(--color-primary); }
.text-primary { color: var(--color-primary)!important; }
.text-accent { color: var(--color-accent)!important; }
.text-white { color: #fff!important; }

/***** MEDIA QUERIES - RESPONSIVE BEHAVIOR *****/
@media (max-width: 900px) {
  .section, .contact-info, .thank-you-section, .legal-section, .terms-section, .cookie-section, .legal-gdpr  { padding: 22px 4px; margin-bottom: 26px; }
  .about-teaser, .services-teaser, .map-section { padding: 16px 2px; }
}
@media (max-width:500px){
  h1 { font-size: 1.29rem; }
  .content-wrapper { gap: 8px; }
}

/* GEOMETRIC/BOLD MODERN DECORATIVE ELEMENTS */
.hero::after,.cta-banner::before {
  content: '';
  display: block;
  position: absolute;
  right: 0; bottom: 0;
  width: 180px;
  height: 75px;
  background: #1589A617;
  border-radius: 0 0 32px 0;
  z-index: 0;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55px; height: 55px;
  background: #12627c22;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width:768px) {
  .hero::after,.cta-banner::before, .cta-banner::after { display:none; }
}

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