/* CSS RESET & BASELINE NORMALIZATION */
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, main, section, article, header, nav, footer, aside, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FAFBFD;
  color: #284266;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #3173b7;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1B4973;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: inline-block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

/* COLOR PALETTE VARIABLES (with fallbacks) */
:root {
  --brand-blue: #1B4973;
  --brand-green: #7AD9B0;
  --brand-pink: #F9D2D3;
  --brand-yellow: #FFF8D2;
  --brand-lavender: #E3E6FF;
  --brand-background: #F8F9FA;
  --brand-accent: #CED6E0;
  --brand-secondary: #BEE1E6;
  --brand-primary: #1B4973;
  --brand-gradient-alt: #F9F6FF;
  --pastel-shadow: 0 4px 20px 0 rgba(191, 195, 240, 0.16);
  --white: #fff;
  --black: #252D37;
}

/* LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TYPOGRAPHY SCALE & STYLE */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--brand-blue);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  color: #4587ae;
  margin-bottom: 10px;
  font-weight: 500;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #284266;
  margin-bottom: 1em;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #5E7196;
  margin-bottom: 2rem;
}

/* BUTTONS */
.btn-primary, .newsletter-signup button, .cookie-banner .btn, .cookie-modal .btn {
  display: inline-block;
  padding: 0.75em 2.2em;
  background: linear-gradient(90deg, #7AD9B0 0%, #E3E6FF 100%);
  color: var(--brand-blue);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 32px;
  outline: none;
  box-shadow: 0 2px 15px 0 rgba(172,197,226,.08);
  border: 1px solid var(--brand-secondary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  margin-top: 18px;
  text-align: center;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus,
.newsletter-signup button:hover, .newsletter-signup button:focus,
.cookie-banner .btn:hover, .cookie-modal .btn:hover {
  background: linear-gradient(90deg, #F9D2D3 0%, #7AD9B0 100%);
  color: #1B4973;
  box-shadow: 0 4px 20px 0 rgba(191,195,240,.17);
  border-color: #F9D2D3;
}
.btn-secondary {
  padding: 0.7em 1.7em;
  background: var(--brand-lavender);
  color: #1B4973;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  border: 1px solid var(--brand-accent);
  box-shadow: 0 2px 10px 0 rgba(142, 187, 248, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E3E6FF;
  border-color: #7AD9B0;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--brand-background);
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #F0F4F8;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #284266;
  font-weight: 500;
  border-radius: 8px;
  padding: 7px 16px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #E3E6FF;
  color: var(--brand-blue);
}
header .btn-primary {
  margin-left: 30px;
  margin-top: 0;
  font-size: 1rem;
  padding: 0.65em 1.9em;
}
header img {
  height: 48px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #1B4973;
  font-size: 2rem;
  margin-left: 12px;
  z-index: 30;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247, 249, 255, 0.97);
  box-shadow: 0 4px 24px 0 rgba(173,178,219,0.08);
  z-index: 1003;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.7,0,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 30px 20px 0;
  font-size: 2rem;
  color: var(--brand-blue);
  background: var(--brand-lavender);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 10px 0 rgba(160, 176, 210, 0.13);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F9D2D3;
}
.mobile-nav {
  padding: 10px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  color: #1B4973;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 17px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-lavender);
  color: #3173b7;
}

@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    padding: 0 10px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: 55px;
  }
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    z-index: 1300;
  }
  header img {
    height: 37px;
  }
}

/* MAIN HERO SECTION */
.hero {
  background: linear-gradient(180deg, #E3E6FF 0%, #F8F9FA 90%);
  padding: 70px 0 50px 0;
  margin-bottom: 60px;
  box-shadow: 0 6px 50px 0 rgba(205,215,239,0.12);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--brand-blue);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
@media (max-width: 600px) {
  .hero {
    padding: 35px 0 35px 0;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 700px) {
  section {
    padding: 28px 0;
    margin-bottom: 35px;
  }
}

/* FLEXBOX PATTERNS & CARD CONTAINERS */
.card-container, .testimonials, .blog-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card { /* general reusable card style */
  background: #fff;
  box-shadow: var(--pastel-shadow);
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 35px 0 rgba(165,172,232,.15);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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, .text-image-section, .card-container, .testimonials, .blog-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* FEATURES LIST (HOME why choose us) */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.features-list li {
  flex: 1 1 240px;
  background: #fff;
  box-shadow: var(--pastel-shadow);
  border-radius: 18px;
  padding: 26px 20px 20px 20px;
  min-width: 220px;
  min-height: 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.features-list li:hover, .features-list li:focus {
  box-shadow: 0 6px 32px 0 rgba(178,196,239,.15);
  transform: translateY(-2px) scale(1.015);
}
.features-list img {
  height: 39px;
  margin-bottom: 5px;
}
.features-list h3 {
  color: #1B4973;
  font-size: 1.21rem;
}

/* SERVICES LIST */
.services-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.services-list li {
  flex: 1 1 270px;
  background: #F8F9FA;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px 0 rgba(214,233,234,0.16);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #F4E2F2;
  position: relative;
  min-width: 210px;
  transition: box-shadow 0.18s;
}
.services-list li:hover, .services-list li:focus {
  box-shadow: 0 7px 35px 0 rgba(245,197,210,0.18);
}
.services-list h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2A679A;
  font-size: 1.14rem;
  font-weight: 600;
}
.service-price {
  background: var(--brand-yellow);
  color: #715E26;
  font-size: 0.99rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 2px 11px;
  margin-left: 10px;
}

.quick-facts, .impact-list, .bullet-list, .contact-info, .step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 21px 0 0 0;
  padding-left: 0;
}
.quick-facts li, .impact-list li, .bullet-list li {
  position: relative;
  padding-left: 22px;
  color: #1B4973;
  font-size: 1.02rem;
  line-height: 1.6;
}
.quick-facts li:before, .impact-list li:before, .bullet-list li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #BEE1E6;
  border-radius: 2px;
  margin-right: 9px;
  position: absolute;
  left: 0;
  top: 8px;
}
.step-list {
  counter-reset: listitem;
}
.step-list li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
}
.step-list li:before {
  counter-increment: listitem;
  content: counter(listitem);
  background: #E3E6FF;
  color: #3C617A;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0.13em;
  font-size: 1.05em;
  line-height: 22px;
  font-weight: bold;
}
.contact-info img {
  height: 20px;
  vertical-align: middle;
  margin-right: 11px;
  margin-top: -2px;
}
.contact-info li {
  padding-left: 0;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  color: #1B4973;
  box-shadow: 0 3px 24px 0 rgba(197,173,241,0.08);
  border-radius: 18px;
  padding: 20px 28px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #BEE1E6;
  transition: box-shadow 0.2s, border 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 34px 0 rgba(108,181,195,0.13);
  border-left: 5px solid #7AD9B0;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1B4973;
  margin-bottom: 0.25em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #5E7196;
}

/* BLOG LIST */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.blog-list article {
  background: #fff;
  box-shadow: var(--pastel-shadow);
  border-radius: 18px;
  padding: 24px 23px;
  margin-bottom: 20px;
  flex: 1 1 325px;
  min-width: 210px;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border: 1.5px solid #E3E6FF;
}
.blog-list article:hover, .blog-list article:focus {
  box-shadow: 0 7px 35px 0 rgba(191,192,237,0.22);
  transform: translateY(-3px) scale(1.012);
}
.blog-list a {
  color: #1B4973;
  font-weight: 500;
}

/* NEWSLETTER SIGNUP */
.newsletter-section {
  background: #F9D2D3;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(246,194,246,0.10);
  padding: 38px 25px;
  margin-bottom: 35px;
  text-align: center;
}
.newsletter-signup {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 15px;
  justify-content: center;
}
.newsletter-signup input[type="email"] {
  border: 1px solid #BEE1E6;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 1.03rem;
  background: #fff;
  color: #284266;
  width: 220px;
  transition: border 0.18s;
  margin-right: 7px;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.5px solid #1B4973;
}
.newsletter-signup button {
  background: linear-gradient(90deg, #BEE1E6 0%, #7AD9B0 100%);
  color: #1B4973;
  border-radius: 14px;
  padding: 10px 22px;
  border: none;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

/* CONTACT FORM */
.contact-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--pastel-shadow);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0 18px 0;
  margin-bottom: 16px;
}
.contact-form strong {
  font-size: 1rem;
  color: #2A679A;
}
.contact-form .btn-primary {
  margin-top: 18px;
  width: 66%;
  max-width: 250px;
  align-self: flex-start;
}
.contact-form .form-note {
  color: #8C97AE;
  font-size: .97rem;
  margin-top: 10px;
}

.static-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #E3E6FF;
  border-radius: 14px;
  padding: 21px 23px;
  margin-top: 18px;
  margin-bottom: 4px;
}
.static-map img {
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(207,217,247,0.13);
}
.static-map .note {
  color: #8C97AE;
  font-size: .98rem;
  margin: 0;
}

/* LEGAL PAGES */
.legal-text {
  background: #fff;
  border-radius: 17px;
  box-shadow: var(--pastel-shadow);
  padding: 29px 23px;
  font-size: 1.07rem;
  color: #31465e;
  margin: 22px 0 10px 0;
}
.legal-text h2 {
  font-size: 1.19rem;
  margin-bottom: 11px;
}
.legal-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 14px;
}
.legal-text ul {
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #E3E6FF;
  padding: 45px 0 0 0;
  border-top: 1px solid #F4F6FB;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 35px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  max-width: 200px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand p {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B4973;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.34;
  margin-bottom: 0;
}
.footer-brand span {
  color: #3C617A;
  font-size: .91rem;
  font-weight: 400;
}
.footer-nav, .footer-legal, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 110px;
}
.footer-nav a {
  color: #284266;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1B4973;
}
.footer-legal a {
  color: #84ACCA;
  font-size: .97rem;
  margin-right: 2px;
  transition: color 0.17s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #4587ae;
}
.footer-contact p {
  color: #3C617A;
  font-size: .99rem;
  line-height: 1.65;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-brand, .footer-nav, .footer-legal, .footer-contact {
    margin-bottom: 13px;
  }
}

/* CONFIRMATION PAGE */
.confirmation-section {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.confirmation-message {
  background: #E3E6FF;
  border-radius: 19px;
  box-shadow: var(--pastel-shadow);
  padding: 29px 21px 33px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.confirmation-message p {
  font-size: 1.2rem;
  color: #2A679A;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 75%, #E3E6FF 100%);
  color: #1B4973;
  box-shadow: 0 -2px 20px 0 rgba(197,213,255,0.15), 0 0.5px 0 #E3E6FF;
  padding: 22px 20px 18px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  z-index: 1400;
  animation: cookieBannerIn 0.48s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes cookieBannerIn {
  from { opacity:0; transform: translateY(100%); }
  to   { opacity:1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.04rem;
  margin-bottom: 0;
  margin-right: 8px;
  flex: 1 1 190px;
}
.cookie-banner .btn {
  margin-right: 10px;
}
.cookie-banner .btn {
  font-size: 1rem;
  padding: 8px 20px;
}
.cookie-banner .btn-settings {
  background: #E3E6FF;
  color: #1B4973;
  border: 1px solid #BEE1E6;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #F9D2D3;
  border-color: #F9D2D3;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 15px 10px 11px 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1450;
  left:0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(85, 102, 152, 0.16);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.36s cubic-bezier(.34,1.56,.64,1) both;
}
.cookie-modal-backdrop.open { display: flex; }
@keyframes cookieModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 40px 34px 30px 34px;
  box-shadow: 0 7px 56px 0 rgba(164,169,204,0.18);
  max-width: 395px;
  width: 90vw;
  text-align: left;
  position: relative;
  z-index: 1500;
  animation: cookieModalPopIn 0.5s cubic-bezier(.13,1.19,.67,1) both;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@keyframes cookieModalPopIn {
  from { transform:scale(.95) translateY(60px); opacity: 0; }
  to   { transform:scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #1B4973;
  font-size: 1.16rem;
  margin-bottom: 9px;
}
.cookie-modal label {
  font-size: 1.01rem;
  color: #2A679A;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #7AD9B0;
}
.cookie-modal .btn-group {
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal .btn {
  min-width: 105px;
  padding: 9px 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #E3E6FF;
  color: #1B4973;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 11px 0 rgba(183,176,214,0.13);
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F9D2D3;
}

/* MICROS: ANIMATION, HOVERS, INTERACTIONS */
.btn-primary, .btn-secondary, .testimonial-card, .features-list li, .card, .blog-list article, .services-list li {
  transition: box-shadow 0.18s, transform 0.16s, border 0.18s, background 0.19s;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .mobile-menu-close:focus, .modal-close:focus {
  outline: 2.5px solid #A0E5B3;
  outline-offset: 2px;
}

/* MEDIA QUERIES FOR LAYOUTS AND FONT SCALING */
@media (max-width: 630px) {
  .card, .services-list li, .features-list li {
    padding: 18px 11px;
    font-size: .97rem;
  }
  h1, .hero h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 430px) {
  .footer-brand img {
    height: 30px;
  }
  .footer-brand p { font-size: .93rem; }
  .footer-contact p { font-size: .93rem; }
}

/* SOFT PASTEL STYLE ACCENTS */
body {
  background: linear-gradient(180deg, #F8F9FA 80%, #E3E6FF 100%);
}
.card, .services-list li, .blog-list article, .testimonial-card, .newsletter-section, .static-map, .legal-text {
  box-shadow: 0 2px 18px 0 rgba(191,195,240,0.08);
  border-radius: 16px;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }

/*--- END OF MAIN CSS FILE ---*/