/* ==========================
   CSS RESET & BASE STYLESHEET
   ========================== */

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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F6FBF4;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #174A3C;
  background: #F6FBF4;
  min-height: 100vh;
  line-height: 1.7;
}

*, *::before, *::after {
  box-sizing: inherit;
}

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

a {
  color: #298e46;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: #174A3C;
}

ul, ol {
  margin-left: 1.2em;
}
ul {
  list-style: disc inside;
}


/* ========================================
   VIBRANT ENERGETIC BRAND COLORS & FONTS
   ======================================== */
:root {
  --vv-primary: #174A3C;
  --vv-secondary: #65B06B;
  --vv-accent: #F6FBF4;
  --vv-electric1: #00caff;
  --vv-electric2: #ff1d5e;
  --vv-electric3: #fdcb00;
  --vv-electric4: #24ffd4;
  --vv-electric5: #5f21e9;
  --vv-dark: #181a22;
  --vv-white: #fff;
  --vv-shadow: 0 4px 16px 0 rgba(23, 74, 60, 0.06);
  --vv-radius: 16px;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
       url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxZzbi8.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('https://fonts.gstatic.com/s/opensans/v28/mem8YaGs126MiZpBA-UFVZ0b.ttf') format('truetype');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: none;
  color: var(--vv-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--vv-secondary);
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--vv-primary);
}

.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--vv-secondary);
  margin-bottom: 26px;
  font-weight: 600;
  letter-spacing: 0.012em;
}

/* ==============
   LAYOUT CONTAINERS
   ============== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vv-accent);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  padding: 32px 0 0 0;
}

.card-container, .content-grid, .feature-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  z-index: 1;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px -8px var(--vv-electric1);
  transform: translateY(-4px) scale(1.02);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 0 8px 0;
  margin-top: 8px;
}
.feature-grid li {
  background: var(--vv-white);
  border-radius: var(--vv-radius);
  padding: 26px 22px 20px 22px;
  box-shadow: var(--vv-shadow);
  width: 270px;
  min-width: 220px;
  flex: 1 1 220px;
  min-height: 230px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--vv-dark);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  border-top: 4px solid var(--vv-secondary);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.15s;
}
.feature-grid li:hover {
  border-top: 4px solid var(--vv-electric2);
  box-shadow: 0 8px 36px -8px var(--vv-electric2);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}

.services-list {
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.services-list li {
  background: var(--vv-white);
  border-radius: var(--vv-radius);
  padding: 28px 24px 20px 24px;
  box-shadow: var(--vv-shadow);
  font-size: 1.07rem;
  margin-bottom: 0;
  color: var(--vv-dark);
  position: relative;
  border-left: 5px solid var(--vv-electric1);
  transition: border-color 0.22s, box-shadow 0.22s;
}
.services-list li:hover {
  border-left: 5px solid var(--vv-electric3);
  box-shadow: 0 8px 36px -8px var(--vv-electric3);
}
.services-list a {
  font-weight: 700;
  color: var(--vv-electric2);
  transition: color 0.22s;
  margin-top: 12px;
  display: inline-block;
}
.services-list a:hover {
  color: var(--vv-dark);
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-badges li {
  display: flex;
  align-items: center;
  background: var(--vv-accent);
  border-radius: 12px;
  font-size: 1rem;
  padding: 8px 16px 8px 8px;
  gap: 8px;
  box-shadow: 0 1px 4px 0 rgba(23,74,60,0.05);
}
.trust-badges img {
  width: 28px;
  height: 28px;
}

.table {
  width: 100%;
  background: var(--vv-white);
  box-shadow: var(--vv-shadow);
  border-radius: var(--vv-radius);
  margin: 24px 0;
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  background: var(--vv-white);
}
thead th {
  background: var(--vv-secondary);
  color: var(--vv-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 18px 10px;
  border-top-left-radius: var(--vv-radius);
  border-top-right-radius: var(--vv-radius);
}
tbody td {
  color: var(--vv-dark);
  padding: 13px 10px;
  border-bottom: 1px solid #e6e6e6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
tbody tr:last-child td {
  border-bottom: none;
}
/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, var(--vv-electric1) 0%, var(--vv-secondary) 70%);
  padding: 52px 0 52px 0;
  color: var(--vv-dark);
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.cta-section h2 {
  color: var(--vv-white);
  font-size: 2.3rem;
  text-shadow: 0 2px 8px rgba(23,74,60,0.12);
}

/* Hero section */
.hero {
  background: linear-gradient(90deg, var(--vv-electric1), var(--vv-electric2), var(--vv-electric4));
  padding: 68px 0 66px 0;
  border-radius: 0 0 36px 36px;
  color: var(--vv-white);
  box-shadow: 0 8px 32px 0 rgba(23,74,60,0.08);
  margin-bottom: 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1, .hero .subheadline {
  color: var(--vv-white);
  text-shadow: 0 2px 10px rgba(23, 74, 60, 0.13);
}
.hero .btn-primary {
  font-size: 1.25rem;
}

.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: 22px;
  }
}

/* =======================
   TESTIMONIALS & CARDS
   ======================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  min-width: 240px;
  max-width: 370px;
  font-size: 1.07rem;
  margin-bottom: 20px;
  color: #232828;
  border-left: 5px solid var(--vv-electric2);
  transition: box-shadow 0.22s, border-left 0.19s;
}
.testimonial-card:hover {
  border-left: 5px solid var(--vv-electric1);
  box-shadow: 0 8px 36px -8px var(--vv-electric1);
}
.testimonial-card p {
  font-style: italic;
  color: #222;
  margin-bottom: 16px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--vv-secondary);
  font-weight: bold;
}


/* ================
   BUTTONS
   ================ */
.btn-primary, .btn-secondary {
  appearance: none;
  border: none;
  outline: none;
  background: linear-gradient(90deg, var(--vv-electric2) 0%, var(--vv-electric1) 90%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 14px 38px;
  border-radius: 38px;
  box-shadow: 0 2px 12px 0 rgba(0, 202, 255, 0.10);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.18s, transform 0.17s;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--vv-electric3), var(--vv-electric2));
  box-shadow: 0 4px 24px 0 rgba(255, 29, 94, 0.16);
  transform: translateY(-1px) scale(1.035);
}
.btn-secondary {
  background: linear-gradient(90deg, var(--vv-secondary) 10%, var(--vv-electric4) 100%);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(90deg, var(--vv-electric1), var(--vv-secondary));
}
.footer-main .btn-primary {
  margin-top: 0;
  font-size: 1rem;
  padding: 10px 26px;
}

/* ===============
   HEADER & NAVIGATION
   =============== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(23, 74, 60, 0.045);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  transition: box-shadow 0.21s;
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.logo img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 60%;
}
nav a {
  color: var(--vv-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 6px 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-bottom 0.19s;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
nav a:hover, nav a:focus {
  color: var(--vv-electric2);
  border-bottom: 2px solid var(--vv-electric2);
  background: var(--vv-accent);
}

header .btn-primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
  padding: 10px 28px;
}

/* =============
   MOBILE NAVIGATION
   ============= */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg, var(--vv-electric1) 10%, var(--vv-electric2) 90%);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 202, 255, 0.07);
  transition: background 0.18s, transform 0.17s;
  z-index: 1400;
}
.mobile-menu-toggle:hover {
  background: var(--vv-electric2);
  transform: scale(1.07);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vv-dark);
  color: #fff;
  z-index: 1500;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.6,0,.57,1), opacity 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 28px 8px 26px;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  top: 15px;
  right: 17px;
  cursor: pointer;
  z-index: 1501;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0 12px 2px;
  border-radius: 8px;
  transition: background 0.21s, color 0.17s;
  width: 98%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vv-electric2);
  color: #fff;
}

@media (max-width: 1024px) {
  nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .hero { padding: 40px 0 36px 0; }
  .cta-section { padding-top: 26px; padding-bottom: 26px; }
  .feature-grid {
    gap: 16px;
  }
  .feature-grid li {
    min-width: 160px;
    min-height: 150px;
    width: 100%;
  }
  .services-list li {
    padding: 18px 10px 14px 12px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.08rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 23px 4px; }
}
/* ===========
   FOOTER
   =========== */
footer {
  background: #272727;
  color: var(--vv-primary);
  padding: 36px 0 0 0;
  box-shadow: 0 -2px 12px 0 rgba(23,74,60,0.045);
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-bottom: 18px;
}
.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-main nav a {
  color: var(--vv-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 2px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom 0.15s;
}
.footer-main nav a:hover {
  color: var(--vv-electric2);
  border-bottom: 2px solid var(--vv-electric2);
}
.footer-main img {
  width: 46px;
  height: 46px;
}
.footer-contact {
  font-size: 0.95rem;
  color: #336656;
  padding-bottom: 28px;
  border-bottom: 1px solid #e1ece5;
  margin-bottom: 0;
}

/* ===================
   COOKIES BANNER & MODAL
   =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9000;
  background: #fff;
  color: var(--vv-dark);
  box-shadow: 0 -2px 16px 0 rgba(23,74,60,0.10);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: transform 0.28s, opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.19s, color 0.15s, transform 0.12s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, var(--vv-electric1), var(--vv-electric3));
  color: #fff;
}
.cookie-banner .accept:hover {
  background: linear-gradient(90deg, var(--vv-electric2), var(--vv-electric1));
}
.cookie-banner .reject {
  background: linear-gradient(90deg, #434850, #1f2025);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: linear-gradient(90deg, var(--vv-electric2), #434850);
}
.cookie-banner .settings {
  background: #e9e9e9;
  color: var(--vv-dark);
}
.cookie-banner .settings:hover {
  background: #ffe359;
  color: var(--vv-dark);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 9500;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,74,60, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 305px;
  max-width: 90vw;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 10px 54px 0 rgba(23,74,60,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.34s cubic-bezier(.68,.3,.57,1);
}
@keyframes cookie-modal-in {
  0% {transform: scale(0.92) translateY(40px); opacity: 0.2;}
  80% {transform: scale(1.03) translateY(-8px); opacity: 1;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--vv-primary);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-category .essential {
  color: #222;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: var(--vv-dark);
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover {
  color: var(--vv-electric2);
}

/* ================
   FORM ELEMENTS
   ================ */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #b3dfba;
  padding: 9px 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.15s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vv-electric1);
  box-shadow: 0 2px 8px var(--vv-electric3, #fdcb00);
}
label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ================
   SPACING FOR ALL MAIN CONTAINERS
   ================ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  margin-bottom: 20px;
}

/* ================
   FLEXBOX UTILITY CLASSES AS INSTRUCTIONS
   ================ */
.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; }

@media (max-width: 1024px) {
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .content-grid { gap: 12px; }
}


/* ================
   ANIMATIONS AND MICRO-INTERACTIONS
   ================ */
.btn-primary, .btn-secondary, .services-list li, .card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.2s, background 0.2s, transform 0.14s, border-color 0.19s;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.97);
}
.card:active, .feature-grid li:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* ================
   MISC (SCROLLBARS STYLING, ETC)
   ================ */

::-webkit-scrollbar {
  width: 7px;
  background: var(--vv-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--vv-electric3);
  border-radius: 12px;
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .footer-main nav {
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* ================
   DARK MODE SUPPORT (OPTIONAL, NO GRID/NO ABSOLUTE)
   ================ */
@media (prefers-color-scheme: dark) {
  html, body {
    background: #4c6daa;
    color: #d4fae8;
  }
  section {
    background: #4c6daa;
  }
  .feature-grid li, .services-list li, .card, .testimonial-card {
    background: #4c6daa;
    color: #eefbe7;
    box-shadow: 0 2px 32px 0 rgba(0,202,255,0.03);
  }
  .cta-section {
    color: #fff;
    background: linear-gradient(90deg, #314288, #00cafe 80%);
  }
  .footer-contact, .footer-main nav a, .footer-main nav a:visited {
    color: #d4fae8;
  }
  .cookie-banner, .cookie-modal {
    background: #1c283e;
    color: #fff;
  }
}

/* =========================
   END OF style.css          
   ========================= */
