/* =========================
   Plasma Glide Legal CSS
   Vibrant Energetic Style
   Only Flexbox for Layouts
============================*/

/* ==== 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F8FD;
  color: #143152;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  color: #26A69A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #143152;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===============
   TYPOGRAPHY
=================*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  color: #143152;
  margin-bottom: 18px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #143152;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #26A69A;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #143152;
}
p, .text-section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #143152;
}
strong {
  color: #143152;
  font-weight: 700;
}

/* ================
   GENERAL LAYOUT
==================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ================
   HEADER
==================*/
header {
  width: 100%;
  background: #143152;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 30;
  box-shadow: 0 2px 12px 0 rgba(32,32,32,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: #26A69A;
  transition: width 0.25s;
  margin-top: 4px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: #26A69A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 13px 32px;
  margin-left: 18px;
  box-shadow: 0 2px 9px 0 rgba(38,166,154,.18);
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.14s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #143152;
  color: #26A69A;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 15px 0 rgba(20,49,82,0.15);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #26A69A;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 100;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 880px) {
  .main-nav {
    gap: 12px;
  }
  .cta-button {
    padding: 13px 18px;
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 4px;
    min-height: 68px;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 3px;
    font-size: 1rem;
    padding: 8px 20px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================
  MOBILE NAV MENU
==================*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #143152;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.88, 0, 0.32, 1);
  z-index: 8000;
  box-shadow: 0 4px 32px rgba(20,49,82,0.32);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.9rem;
  color: #26A69A;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 28px;
  margin-bottom: 14px;
  align-self: flex-start;
  transition: color 0.2s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  transform: scale(1.09);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.18s, padding-left 0.18s;
  padding: 5px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #26A69A;
  padding-left: 10px;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================
   HERO SECTION
==================*/
.hero {
  background: linear-gradient(90deg, #26A69A 0%, #71E0D6 100%);
  color: #143152;
  min-height: 330px;
  padding: 60px 0 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  color: #143152;
  max-width: 640px;
  background: rgba(243, 248, 253, 0.86);
  border-radius: 18px;
  padding: 34px 28px 36px 32px;
  box-shadow: 0 6px 36px 0 rgba(38,166,154,.16);
  gap: 20px;
  margin-top: 0;
  margin-bottom: 0;
}
.hero h1 {
  color: #143152;
  font-size: 2.5rem;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #143152;
  margin-bottom: 18px;
}
.hero .cta-button {
  margin-left: 0;
}
@media (max-width:768px) {
  .hero {
    padding: 33px 0 30px 0;
  }
  .hero .content-wrapper {
    padding: 22px 10px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* ===============
  FEATURE GRID
================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(38,166,154,.09);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  padding: 25px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  border-left: 5px solid #26A69A;
  position: relative;
  transition: box-shadow 0.25s, scale 0.17s;
}
.feature-grid li img {
  width: 38px;
  margin-bottom: 3px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 7px 32px 0 rgba(38,166,154,0.15);
  scale: 1.03;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid li {
    max-width: 100%;
    min-width: 160px;
    padding: 20px 10px 22px 16px;
  }
}
@media (max-width:600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==================
   SERVICE LISTING
===================*/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2.5px 10px 0 rgba(20,49,82,0.10);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 0;
  border-left: 4px solid #143152;
  transition: box-shadow 0.2s, border 0.15s;
  flex-wrap: wrap;
  min-width: 0;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 38px 0 rgba(20,49,82,0.18);
  border-left: 4px solid #26A69A;
}
.service-list li strong {
  font-size: 1.13rem;
  font-family: 'Montserrat';
  color: #143152;
}
.service-list .price {
  background: #26A69A;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 16px;
  border-radius: 15px;
  margin-left: auto;
  align-self: flex-start;
  box-shadow: 0 1.5px 7px 0 rgba(38,166,154,0.09);
}
.service-list .text-section {
  flex: 1 1 230px;
  margin-left: 10px;
}
@media (max-width: 700px) {
  .service-list li {
    flex-direction: column;
    gap: 4px;
    padding: 12px 10px;
  }
  .service-list .price {
    margin-top: 7px;
    margin-left: 0;
  }
}

/* ================
  TEAM BIO
==================*/
.team-member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.team-bio {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 340px;
  background: #143152;
  color: #fff;
  border-radius: 15px;
  padding: 22px 28px 20px 20px;
  box-shadow: 0 1.5px 11px 0 rgba(20,49,82,0.14);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, scale 0.18s;
}
.team-bio:hover, .team-bio:focus-within {
  box-shadow: 0 5px 30px rgba(38,166,154,0.16);
  scale: 1.02;
}
.team-bio h3 {
  color: #26A69A;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.team-bio p {
  color: white;
}
@media (max-width:600px) {
  .team-member-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-bio {
    max-width: 100%;
    min-width: 0;
    padding: 20px 13px;
  }
}

/* ==========================
      TESTIMONIALS CARDS
===========================*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #143152;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(38,166,154,0.07);
  padding: 20px;
  margin-bottom: 22px;
  border-left: 4px solid #26A69A;
  position: relative;
  max-width: 680px;
  transition: box-shadow 0.18s, scale 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.07rem;
  line-height: 1.32;
  color: #143152;
  font-family: 'Montserrat';
  font-weight: 600;
  margin: 0;
}
.testimonial-card .client {
  color: #26A69A;
  font-size: 1rem;
  margin-left: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(38,166,154, 0.14);
  scale: 1.02;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px 14px 10px;
    max-width: 100%;
  }
  .testimonial-card .client {
    margin-left: 0;
  }
}

/* =========================
      RESOURCES / BLOG
==========================*/
.resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.document-downloads, .guides-list, .tools-overview {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px 0 rgba(20,49,82,0.10);
  padding: 18px 24px;
  min-width: 200px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.document-downloads h3, .guides-list h3, .tools-overview h3 {
  font-size: 1.13rem;
  color: #143152;
  margin-bottom: 6px;
}
.resources-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resources-list a {
  color: #26A69A;
  font-weight: bold;
  transition: color 0.18s, text-decoration 0.20s;
}
.resources-list a:hover, .resources-list a:focus {
  color: #143152;
  text-decoration: underline;
}
@media (max-width:700px) {
  .resources-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* Blog list / teasers */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.blog-teaser {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(38,166,154,0.11);
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 340px;
  padding: 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, scale 0.15s;
}
.blog-teaser h3 {
  font-size: 1.15rem;
}
.blog-teaser h3 a {
  color: #26A69A;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.13rem;
  transition: color 0.17s;
}
.blog-teaser h3 a:hover, .blog-teaser h3 a:focus {
  color: #143152;
}
.blog-teaser:hover, .blog-teaser:focus-within {
  box-shadow: 0 9px 32px rgba(38,166,154, 0.17);
  scale: 1.03;
}
@media (max-width:700px) {
  .blog-list {
    flex-direction: column;
    gap: 17px;
  }
}

.search-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.search-filter label {
  font-size: 1.05rem;
  font-family: 'Montserrat',sans-serif;
  color: #143152;
  font-weight: 600;
}
.search-filter input {
  font-size: 1.06rem;
  padding: 6px 12px;
  border-radius: 11px;
  border: 1.5px solid #26A69A;
  transition: border-color 0.18s;
  outline: none;
}
.search-filter input:focus {
  border-color: #143152;
}

/* ============
   CONTACT PAGE
==============*/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.map-embed {
  background:#F3F8FD;
  border-radius:13px;
  box-shadow:0 1.5px 10px 0 rgba(38,166,154,0.07);
  padding:18px 19px;
  margin-top:18px;
  margin-bottom:20px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list li strong {
  color: #26A69A;
}

/* ==============
   TEXT-IMAGE-SECTION
==================*/
.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: 18px;
  }
}

/* ==============
  GENERAL CARDS
================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20,49,82,0.07);
  padding: 24px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  transition: box-shadow 0.18s, scale 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(38,166,154,0.19);
  scale: 1.03;
}

/* ====================
   LAYOUT FLEX PATTERNS
======================*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   UTILITY CLASSES
======================*/
.text-section {
  max-width: 750px;
}
.benefit-list, .approach-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.section:last-child {
  margin-bottom: 0;
  padding-bottom: 36px;
}

/* ================
   FOOTER
==================*/
footer {
  background: #143152;
  color: #fff;
  padding: 32px 0 13px 0;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #26A69A;
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.89;
  transition: opacity 0.17s, color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  opacity: 1;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 6px;
}
@media (max-width:700px) {
  .footer-nav {
    gap: 15px;
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}

/* ===============
   BUTTONS & FORMS
=================*/
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.13s, color 0.13s, transform 0.15s;
}
.button {
  background: #26A69A;
  border-radius: 7px;
  color: #fff;
  padding: 9px 23px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  margin-right: 9px;
}
.button:hover, .button:focus {
  background: #143152;
  color: #26A69A;
  transform: scale(1.04);
}
input, textarea {
  border-radius: 5px;
  background: #fff;
  color: #143152;
  border: 1.5px solid #b2d6d2;
  padding: 9px 12px;
  font-size: 1rem;
  margin-bottom: 17px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: #26A69A;
}

/* ===========================
 COOKIE BANNER & PREFERENCES
===========================*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #143152;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 24px 18px 24px;
  box-shadow: 0 -3px 28px rgba(20,49,82,0.24);
  z-index: 9999;
  font-size: 1rem;
  animation: slide-up-cc 0.7s cubic-bezier(.56,1.7,.45,1) 1;
}
@keyframes slide-up-cc {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin: 0;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  flex: 2 1 230px;
  font-size: 1rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.cookie-button {
  border-radius: 7px;
  background: #26A69A;
  color: #fff;
  border: none;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Montserrat';
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.14s, transform 0.12s;
}
.cookie-button.reject {
  background: #fff;
  color: #143152;
  border: 1.2px solid #26A69A;
}
.cookie-button.settings {
  background: #143152;
  color: #26A69A;
  border: 1.2px solid #26A69A;
}
.cookie-button:hover, .cookie-button:focus {
  background: #143152;
  color: #26A69A;
  transform: scale(1.05);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97rem;
    padding: 15px 8px 13px 8px;
  }
}

/* COOKIE PREFS MODAL */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  background: #fff;
  min-width: 300px;
  max-width: 98vw;
  width: 430px;
  transform: translate(-50%,50%) scale(0.98);
  border-radius: 18px;
  box-shadow: 0 15px 80px 0 rgba(20,49,82,0.28);
  z-index: 10000;
  padding: 36px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.25s;
  animation: fadein-cmodal 0.6s cubic-bezier(.7,1.5,.4,1) 1;
}
@keyframes fadein-cmodal {
  0% { opacity: 0; transform: translate(-50%,70%) scale(0.92); }
  100% { opacity: 1; transform: translate(-50%,50%) scale(0.98); }
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  color: #143152;
  font-size: 1.24rem;
  margin-bottom:5px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #143152;
}
.cookie-category .cookie-toggle {
  accent-color: #26A69A;
  width: 22px;
  height: 22px;
}
.cookie-category.essential label {
  color: #26A69A;
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #26A69A;
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 25px;
  cursor: pointer;
  transition: transform 0.15s, color 0.19s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #143152;
  transform: scale(1.13);
}
@media (max-width:480px) {
  .cookie-modal {
    width: 98vw;
    min-width: 0;
    max-width: 99vw;
    padding: 21px 6vw 14px 7vw;
    font-size: 0.95rem;
  }
  .cookie-modal .cookie-modal-close {
    top: 7px;
    right: 15px;
  }
}

/* ============
 RESPONSIVE
==============*/
@media (max-width:900px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .hero .content-wrapper {
    padding: 18px 7px;
  }
}
@media (max-width:600px) {
  .section {
    padding: 20px 3px;
    margin-bottom: 34px;
  }
  h1, .h1 {
    font-size: 1.3rem;
  }
  h2, .h2 {
    font-size: 1.1rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}

/* ===============
   MICRO ANIMATIONS
==================*/
.card, .blog-teaser, .feature-grid li, .testimonial-card, .team-bio {
  will-change: transform, box-shadow;
}
.cta-button, .button, .cookie-button {
  transition: background 0.15s, color 0.18s, transform 0.16s;
}

/*================
  COLORS SCHEME
===============*/
:root {
  --primary: #143152;
  --secondary: #26A69A;
  --accent: #F3F8FD;
}

/* END OF CSS */
