/* ---------- 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,
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1F5FB;
  color: #13243b;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  letter-spacing: .01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184A7C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, .main-nav a:focus, .mobile-nav a:focus {
  color: #11705E;
  outline: none;
}
strong { font-weight: 700; }
ul, ol { padding-left: 1.3em; }

/* Typography Bold Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #184A7C;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }

p, li, td, th {
  font-weight: 400;
  font-size: 1rem;
  color: #25395A;
}
.subheadline { font-size: 1.25rem; font-weight: 500; color: #11705E; margin-bottom: 24px; }

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .subheadline { font-size: 1.1rem; }
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(16,36,50,0.06);
}

@media (max-width: 900px) {
  .section { padding: 30px 8px; margin-bottom: 36px; }
}

/* Cards & Content Grid */
.card-container, .feature-grid, .service-cards, .service-list, .card-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .service-card, .service-item, .blog-post-preview {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(24,74,124,0.08);
  padding: 25px 22px 28px 22px;
  min-width: 260px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.card:hover, .service-card:hover, .service-item:hover, .blog-post-preview:hover {
  box-shadow: 0 8px 32px 0 rgba(24,74,124,0.17);
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}

.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) {
  .content-grid, .card-container, .feature-grid, .service-cards, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/********* HEADER & NAVIGATION *********/
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(24,74,124,0.07);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #184A7C;
  padding: 10px 6px;
  border-radius: 4px;
  transition: background 0.13s, color 0.14s;
}
.main-nav a:hover {
  background: #F1F5FB;
  color: #11705E;
}
.button-primary {
  appearance: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  background: #184A7C;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  letter-spacing: 0.04em;
  margin-left: 8px;
  transition: background 0.19s, transform 0.15s, box-shadow 0.17s;
  box-shadow: 0 2px 12px 0 rgba(24,74,124,0.09);
  cursor: pointer;
}
.button-primary:hover, .button-primary:focus {
  background: #11705E;
  color: #FFF;
  transform: translateY(-1px) scale(1.02);
}
.button-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  background: #fff;
  color: #11705E;
  border: 2px solid #11705E;
  padding: 12px 28px;
  border-radius: 28px;
  margin-top: 8px;
  margin-bottom: 2px;
  transition: background .16s, color .18s, border-color .16s, transform .13s;
  letter-spacing: 0.04em;
}
.button-secondary:hover, .button-secondary:focus {
  background: #184A7C;
  color: #fff;
  border-color: #184A7C;
  transform: translateY(-1px) scale(1.02);
}

/* Hamburger & Mobile Menu */
.mobile-menu-toggle {
  font-size: 2.3rem;
  line-height: 1;
  background: none;
  border: none;
  color: #184A7C;
  display: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F1F5FB;
}

@media (max-width: 1024px) {
  .main-nav, .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  z-index: 900;
  background: #184A7C;
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.82,.09,.45,1.2);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.7rem;
  color: #fff;
  background: none;
  border: none;
  margin: 0 18px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #11705E;
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100vw;
  padding: 0 34px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #11705E;
  color: #fff;
}

/* ------- HERO SECTIONS ------- */
.hero, .services-hero, .process-hero, .blog-hero, .contact-hero, .testimonials-hero, .thank-you-message {
  background: #184A7C;
  color: #fff;
  padding: 56px 0 48px 0;
}
.hero h1, .services-hero h1, .process-hero h1, .blog-hero h1, .contact-hero h1, .testimonials-hero h1, .thank-you-message h1 {
  color: #fff;
  margin-bottom: 16px;
}
.hero .subheadline, .services-hero ul, .process-hero p, .blog-hero p, .contact-hero p, .testimonials-hero p, .thank-you-message .text-section {
  color: #F1F5FB;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .hero, .services-hero, .process-hero, .blog-hero, .contact-hero, .testimonials-hero, .thank-you-message {
    padding: 36px 0 24px 0;
  }
}

/************ FEATURES **************/
.features {
  margin-top: 24px;
}
.feature-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: 16px;
  padding: 22px 22px 22px 22px;
  box-shadow: 0 2.5px 12px 0 rgba(30,163,138,0.06);
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow .16s, transform .16s;
}
.feature-item img {
  width: 40px; height: 40px;
}
.feature-item h3 {
  color: #184A7C;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.feature-item p {
  color: #25395A;
  font-size: 1rem;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(30,163,138,0.11);
  transform: translateY(-2px) scale(.99);
}

/******** SERVICES OVERVIEW & DETAILS ********/
.services-overview h2, .service-details h2 {
  font-size: 2rem;
}
.service-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.service-card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(24,74,124,0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
}
.service-card h3 {
  color: #184A7C;
  margin-bottom: 6px;
}
.service-card .price {
  color: #1EA38A;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(30,163,138,0.07);
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.service-item .price {
  color: #1EA38A;
  font-weight: bold;
  font-size: 1.07rem;
  margin-top: 8px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(30,163,138,0.07);
  margin: 24px 0 0 0;
}
.pricing-table th {
  background: #F1F5FB;
  color: #184A7C;
  font-weight: 700;
  border-bottom: 2px solid #E3EAF3;
  padding: 16px 12px;
  font-size: 1.04rem;
}
.pricing-table td {
  background: #fff;
  padding: 13px 12px;
  color: #25395A;
  border-bottom: 1px solid #F1F5FB;
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service-list, .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .pricing-table th, .pricing-table td {
    padding: 7px 8px;
    font-size: .98rem;
  }
}

/* ---------- STEPS / PROCESS ---------- */
.steps, .steps-detailed {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(24,74,124,0.07);
  margin-bottom: 36px;
  padding: 32px 20px 24px 20px;
}
.step-list, .numbered-steps {
  margin-bottom: 18px;
  padding-left: 18px;
  color: #184A7C;
  font-weight: 700;
}
.step-list li, .numbered-steps li {
  padding-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.numbered-steps li img {
  vertical-align: middle;
  margin-right: 9px;
  width: 28px;
}
@media(max-width: 600px) {
  .step-list li, .numbered-steps li { font-size: .97rem; }
}

/*********** CTA BANNER ***********/
.cta-banner, .blog-cta {
  background: #1EA38A;
  color: #fff;
  padding: 40px 0 36px 0;
  border-radius: 22px;
  box-shadow: 0 5px 24px 0 rgba(30,163,138,0.09);
  text-align: center;
  margin-bottom: 54px;
}
.cta-banner h2, .blog-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner .button-primary, .blog-cta .button-primary {
  background: #fff;
  color: #11705E;
  border: 2px solid #11705E;
}
.cta-banner .button-primary:hover, .blog-cta .button-primary:hover {
  background: #184A7C;
  color: #fff;
  border-color: #184A7C;
}

/******* TESTIMONIALS ********/
.testimonials-preview, .testimonials-list {
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F1F5FB;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(24,74,124,0.07);
  padding: 20px 22px 18px 22px;
  margin-bottom: 18px;
  transition: box-shadow .14s, background .14s;
}
.testimonial-card p {
  color: #184A7C;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.011em;
}
.testimonial-author {
  color: #11705E;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-top: -8px;
  letter-spacing: .015em;
}
.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 5px 18px 0 rgba(30,163,138,0.13);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 14px 13px 14px;
  }
}

/*********** BLOG **********/
.blog-post-preview {
  border-left: 7px solid #1EA38A;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(24,74,124,0.07);
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  transition: box-shadow .17s;
}
.blog-post-preview h3 {
  margin-bottom: 8px;
}
.read-more {
  color: #11705E;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .96rem;
  margin-top: 9px;
  display: inline-block;
  transition: color 0.16s;
}
.read-more:hover,
.read-more:focus {
  color: #184A7C;
  text-decoration: underline;
}

/*********** ABOUT PAGE ***********/
.about-intro, .about-values, .team-brief {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(24,74,124,0.05);
  margin-bottom: 32px;
  padding: 30px 20px 20px 20px;
}
.values-list {
  list-style: disc inside;
  margin-bottom: 20px;
  color: #11705E;
  font-weight: 600;
}

/*********** CONTACT PAGE **********/
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  color: #25395A;
}
.contact-details li,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.static-map {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 12px 0 rgba(24,74,124,0.07);
}

/******** LEGAL & TEXT SECTIONS ********/
.legal-text {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(24,74,124,0.07);
  margin-bottom: 32px;
  padding: 32px 20px 18px 20px;
}
.text-section {
  margin: 12px 0 10px 0;
  color: #25395A;
  font-size: 1rem;
  line-height: 1.7;
}

/**************** FOOTER ****************/
footer {
  background: #184A7C;
  color: #fff;
  padding: 0;
}
footer section {
  padding: 36px 0 22px 0;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-branding img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F1F5FB;
  font-size: .97rem;
  font-weight: 500;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1EA38A;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 900px) {
  .footer-nav {
    gap: 18px;
  }
}

/********** THANK YOU PAGE ******/
.thank-you-message .button-primary {
  margin-top: 18px;
}

/************ FAQ preview (how-it-works) ******/
.faq-preview {
  background: #F1F5FB;
  padding: 18px 18px 15px 18px;
  border-radius: 16px;
  margin-top: 12px;
  color: #184A7C;
  box-shadow: 0 2px 8px 0 rgba(24,74,124,0.03);
}
.faq-preview h3 {
  margin-bottom: 7px;
  color: #11705E;
  font-size: 1.12rem;
  font-weight: 700;
}
.faq-preview ul {
  margin-bottom: 11px;
}
.faq-preview ul li {
  font-size: .97rem;
  padding-bottom: 3px;
}

/************* SPACING & MISC **************/
@media (max-width: 700px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  footer section, .cta-banner, .blog-cta {
    padding-left: 6px; padding-right: 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/************* COOKIE CONSENT *************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: #184A7C;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  box-shadow: 0 -3px 23px 0 rgba(24,74,124,0.13);
  font-size: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 72px;
  transition: transform 0.35s cubic-bezier(.82,.09,.45,1.2), opacity .17s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  appearance: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 22px;
  margin: 0;
  font-size: .96rem;
  cursor: pointer;
  transition: background 0.14s, color 0.16s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #1EA38A;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(30,163,138,0.11);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #1EA38A;
}
.cookie-banner .reject {
  background: #fff;
  color: #184A7C;
  border: 2px solid #1EA38A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #1EA38A;
  color: #fff;
}
.cookie-banner .settings {
  background: #184A7C;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #184A7C;
  border: 2px solid #184A7C;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  z-index: 12000;
  min-width: 320px; max-width: 94vw;
  background: #fff;
  color: #184A7C;
  border-radius: 18px;
  box-shadow: 0 11px 50px 0 rgba(24,74,124,0.21);
  transform: translate(-50%, -55%) scale(1);
  padding: 36px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(.7,.13,.45,1), transform 0.37s cubic-bezier(.82,.09,.45,1.2);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -49%) scale(0.92);
}
.cookie-modal h3 {
  color: #184A7C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  color: #13243b;
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  width: 40px; height: 21px;
  border-radius: 13px;
  background: #E3EAF3;
  position: relative;
  margin-left: 10px;
  transition: background .17s;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s, background 0.13s;
  box-shadow: 0 1px 3px 0 rgba(24,74,124,0.10);
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: #1EA38A;
  left: 21px;
}
.cookie-modal .cookie-category.essential
 {
  opacity:.82;
}
.cookie-modal .cookie-category.essential label {
  font-weight: 700;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #d6ece6;
  pointer-events: none;
  opacity: 0.65;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  border-radius: 22px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .98rem;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.cookie-modal .modal-actions .accept {
  background: #1EA38A; color: #fff;
}
.cookie-modal .modal-actions .accept:hover, .cookie-modal .modal-actions .accept:focus {
  background: #184A7C;
}
.cookie-modal .modal-actions .close {
  background: #fff; color: #184A7C;
  border: 2px solid #1EA38A;
}
.cookie-modal .modal-actions .close:hover, .cookie-modal .modal-actions .close:focus {
  background: #1EA38A;
  color: #fff;
}

/********* ANIMATIONS *********/
@keyframes fadeInUp {
  0% {opacity:0; transform: translateY(16px);}
  100% {opacity:1; transform: translateY(0);}
}
.section, .card, .service-card, .service-item, .testimonial-card, .cta-banner, .blog-post-preview, .about-intro, .about-values, .team-brief, .legal-text, .thank-you-message, .faq-preview, .cookie-modal, .cookie-banner {
  animation: fadeInUp .55s cubic-bezier(.18,.78,.29,1) both;
}

/**** SCROLLBAR APPEARANCE ****/
::-webkit-scrollbar {
  width: 10px;
  background: #F1F5FB;
}
::-webkit-scrollbar-thumb {
  background: #184A7C;
  border-radius: 13px;
}
@media (max-width: 680px) {
  .footer-branding img {
    height: 24px;
  }
}

/* END CSS */
