/* =====================================================
   CSS RESET & 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,
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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; }
img { max-width: 100%; display: block; height: auto; }
:focus { outline: 2px solid #2B9348; outline-offset: 2px; }

/* =====================================================
   BRAND VARIABLES (FALLBACKS)
====================================================== */
:root {
  --color-primary: #16567F;
  --color-secondary: #E6E9ED;
  --color-accent: #2B9348;
  --color-bg: #FFFFFF;
  --color-vibrant1: #3AF6D5; /* Electric Aqua */
  --color-vibrant2: #F15623; /* Energetic Orange */
  --color-vibrant3: #FFCF00; /* Solar Yellow */
  --color-dark: #10192a;
  --color-grey: #757F8A;
  --color-light: #F8FAFB;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =====================================================
   GENERAL LAYOUT & TYPOGRAPHY
====================================================== */
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; color: var(--color-primary); }
h2 { font-size: 2rem; margin-bottom: 16px; color: var(--color-accent);  }
h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--color-primary);  }
h4 { font-size: 1rem;  }
p, li, address {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 12px;
}
strong { color: var(--color-accent); }

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

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

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

.text-section {
  margin-bottom: 24px;
  width: 100%;
}
.section:last-child {
  margin-bottom: 0;
}

/* =====================================================
   HEADER, NAV, HERO
====================================================== */
header {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 18px 0 rgba(16, 54, 79, 0.11);
  position: relative;
  z-index: 300;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}
.logo img {
  max-height: 48px;
  width: auto;
  mix-blend-mode: luminosity;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 8px;
  border-radius: 6px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  outline: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-vibrant2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(241,86,35,0.11);
  margin-left: 24px;
  transition: background 0.19s, transform 0.19s;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-vibrant1);
  color: #10192a;
  border-color: var(--color-vibrant2);
  transform: translateY(-2px) scale(1.02);
}

/* --------- MOBILE MENU --------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 12px;
  margin-left: 18px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  z-index: 311;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-vibrant3);
  color: var(--color-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 86, 127, 0.98);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.56,.12,.21,.96);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff;
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  margin: 18px 28px 0 0;
  z-index: 10;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-vibrant2);
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vibrant2);
  color: #fff;
  outline: none;
}

@media (max-width: 1024px) {
  header .container {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================================================
   HERO SECTION (index + pages)
====================================================== */
.hero,
.hero-section,
.thank-you-hero {
  min-height: 340px;
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--color-secondary);
  padding: 36px 0 24px 0;
  position: relative;
  overflow: hidden;
}
.hero {
  background: linear-gradient(104deg, var(--color-secondary) 80%, var(--color-vibrant1) 100%);
}
.hero .content-wrapper,
.hero-section .content-wrapper,
.thank-you-hero .content-wrapper {
  align-items: flex-start;
  max-width: 540px;
  gap: 12px;
}
.hero h1, .hero-section h1, .thank-you-hero h1 {
  color: var(--color-vibrant2);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero p, .hero-section p, .thank-you-hero p {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .hero, .hero-section, .thank-you-hero {
    min-height: 210px;
    padding: 24px 0;
  }
  .hero h1, .hero-section h1, .thank-you-hero h1 {
    font-size: 1.5rem;
  }
  .hero p, .hero-section p, .thank-you-hero p {
    font-size: 1rem;
  }
}

/* =====================================================
   FEATURES, CARDS, FLEX LAYOUTS
====================================================== */
.features {
  padding: 40px 0 24px 0;
}
.features .content-wrapper {
  gap: 14px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature {
  background: #fff;
  padding: 26px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 24px rgba(22,86,127,0.07);
  flex: 1 1 205px;
  max-width: 272px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid var(--color-vibrant3);
  transition: box-shadow 0.20s, transform 0.20s, border-color 0.22s;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px var(--color-vibrant1));
}
.feature h3 {
  font-size: 1.18rem;
}
.feature p {
  font-size: 1rem;
  color: var(--color-grey);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 32px 0 rgba(43,147,72,0.18);
  border-color: var(--color-vibrant1);
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature {
    flex: 1 1 160px;
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* ------- ABOUT USP GRID ------- */
.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.usp {
  background: var(--color-light);
  border-radius: 24px;
  border-left: 8px solid var(--color-vibrant2);
  box-shadow: 0 2px 10px rgba(241,86,35,0.09);
  padding: 20px 18px 18px 24px;
  flex: 1 1 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 180px;
}
.usp img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 4px var(--color-vibrant2));
}
.usp h3 {
  font-size: 1.13rem;
}
.usp p {
  color: var(--color-grey);
}
@media (max-width: 800px) {
  .usp-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ------- SERVICE CARDS ------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 18px 0;
  width: 100%;
}
.service-card {
  background: var(--color-vibrant1);
  color: #10192a;
  flex: 1 1 220px;
  max-width: 310px;
  min-width: 200px;
  border-radius: 24px;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 3px 22px 0 rgba(16,86,127,0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--color-vibrant3);
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(43,147,72,0.15);
  border-color: var(--color-vibrant2);
  transform: translateY(-3px) scale(1.01);
}
.service-card h3 {
  font-size: 1.10rem;
  color: var(--color-primary);
}
.service-card p {
  color: #10192a;
  font-size: 0.97rem;
}
.service-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.99rem;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .service-cards {
    gap: 14px;
  }
  .service-card {
    flex: 1 1 160px;
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .service-cards {
    flex-direction: column;
    gap: 10px;
  }
}

/* ------- ABOUT TEAM MEMBERS ------- */
.team-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 16px 0;
  width: 100%;
}
.team-intro li {
  flex: 1 1 230px; max-width: 255px; min-width: 170px;
}
.team-member {
  display: flex; align-items: center;
  gap: 14px; background: var(--color-vibrant1);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(58,246,213,0.11);
  padding: 12px 16px;
}
.team-member img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(16,86,127,0.09);
}
.member-info h3 {
  font-size: 1.09rem;
}
.member-info p {
  font-size: 0.97rem; color: var(--color-dark);
}
@media (max-width:700px) {
  .team-intro ul {
    flex-direction: column;
    gap: 10px;
  }
  .team-member {
    width: 100%;
    min-width: 0;
  }
}

/* ------- VALUES LIST ------- */
.values-list ul {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.values-list li {
  font-size: 1rem;
  color: var(--color-primary);
  position: relative;
  padding-left: 18px;
}
.values-list li:before {
  content: '⚡';
  position: absolute; left: 0; top: 0;
  color: var(--color-vibrant2);
  font-size: 1rem;
}

/* ------- SERVICE (about, pages) ------- */
.service-section, .contact-section {
  background: var(--color-light);
  border-radius: 24px;
  padding: 36px 30px;
  margin-bottom: 44px;
}
@media (max-width:700px) {
  .service-section, .contact-section {
    padding: 22px 8px;
  }
}

/* =====================================================
   CONTACT & MAP
====================================================== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  align-items: stretch;
}
.address-block,.email-block,.opening-hours-block {
  background: var(--color-vibrant3);
  color: #10192a;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(255,207,0,0.09);
  padding: 14px 24px 10px 18px;
  flex: 1 1 150px;
  min-width: 140px; max-width: 260px;
}
.address-block h3, .email-block h3, .opening-hours-block h3 {
  color: var(--color-primary); font-size: 1.09rem; font-weight: 800;
  margin-bottom: 4px;
}
.address-block address { color: #10192a; }
.email-block a {
  color: var(--color-accent); font-weight: 700; font-size: 1rem;
  word-break: break-word;
}
.opening-hours-block p {
  font-size: 0.98rem; color: #10192a;
}

.map-placeholder {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  box-shadow: 0 2px 10px 0 rgba(16,86,127,0.08);
}
.map-placeholder img {
  width: 36px; height: 36px;
}
.map-placeholder p {
  color: var(--color-accent); font-size: 1rem; font-weight: 700;
}
@media (max-width: 900px) {
  .contact-info {
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .contact-info { flex-direction: column; gap: 10px; }
  .address-block, .email-block, .opening-hours-block {
    max-width: 100%; min-width: 0; width: 100%;
  }
  .map-placeholder { flex-direction: column; gap: 10px; }
}

/* =====================================================
   TESTIMONIALS & QUOTES
====================================================== */
.testimonials {
  background: var(--color-light);
  border-radius: 22px;
  padding: 36px 18px 24px 18px;
  margin-bottom: 50px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(22,86,127,0.14);
  padding: 20px;
  min-width: 210px;
  max-width: 370px;
  margin-bottom: 20px;
  border-left: 8px solid var(--color-vibrant1);
}
.testimonial-card blockquote {
  color: #10192a;
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
  quotes: '\201C''\201D''\2018''\2019';
}
.testimonial-card blockquote:before {
  content: '\201C';
  color: var(--color-vibrant2);
  font-size: 1.6rem;
  vertical-align: sub;
}
.testimonial-card .testimonial-author {
  color: var(--color-accent);
  font-size: 0.97rem;
  font-family: var(--font-body);
  font-weight: 700;
}

@media (max-width: 900px) {
  .testimonial-slider {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .testimonial-slider { flex-direction: column; }
  .testimonial-card { max-width: 100%; }
}

/* =====================================================
   FOOTER
====================================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 0 0 16px 0;
  box-shadow: 0 -2px 18px 0 rgba(16,54,79,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
}
.footer-nav, .footer-legal, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 6px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
  padding: 6px 6px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  background: var(--color-vibrant3);
  color: var(--color-primary);
  outline: none;
}
.footer-social a img {
  width: 26px; height: 26px;
  margin-right: 4px;
  filter: brightness(99%) drop-shadow(0 2px 8px #3AF6D5);
  transition: filter 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(70%) drop-shadow(0 1px 10px #2B9348);
}
.footer-legal {
  opacity: 0.82; font-size: 0.92rem; letter-spacing: 0.01em; margin-bottom: 0;
}
.footer-copy { opacity: 0.7; font-size: 0.93rem; letter-spacing: 0; margin-top: 6px; }

@media (max-width:700px) {
  footer .container {
    padding-top: 12px;
    font-size: 0.94rem;
    gap: 7px;
  }
  .footer-nav, .footer-legal, .footer-social { gap: 8px;
  margin-bottom: 3px; }
}

/* =====================================================
   MISCELLANEOUS UTILITIES & DETAILS
====================================================== */
a { transition: color 0.17s, background 0.16s; }

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Ensure all cards/sections spacing */
.card, .feature, .service-card, .usp, .testimonial-card, .team-member {
  margin-bottom: 20px;
}

/* =====================================================
   BUTTONS, LINKS, INTERACTIONS
====================================================== */
button, .cta-btn, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, border-color 0.16s, transform 0.18s;
}

button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* =====================================================
   FORM ELEMENTS (generic)
====================================================== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--color-secondary);
  margin-bottom: 14px;
  background: #fff;
  color: var(--color-primary);
  outline: none;
  transition: border 0.16s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-vibrant1);
  box-shadow: 0 2px 8px 0 rgba(43,147,72,0.09);
}
label {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}

/* =====================================================
   LEGAL PAGES
====================================================== */
.legal {
  background: var(--color-light);
  border-radius: 20px;
  padding: 32px 18px;
  margin: 30px 0;
}
.legal .text-section ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal .text-section ul li {
  font-size: 1rem;
  color: var(--color-primary);
  position: relative;
  padding-left: 16px;
}
.legal .text-section ul li:before {
  content: '✔';
  position: absolute; left: 0; color: var(--color-vibrant2); font-size: 0.98rem;
}

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
====================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--color-vibrant2);
  color: #fff;
  z-index: 99999;
  box-shadow: 0 -4px 28px rgba(241,86,35,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  gap: 24px;
  font-size: 1rem;
  animation: slideUpCookie 0.9s cubic-bezier(.24,1.53,.26,0.87);
}
@keyframes slideUpCookie {
  0% {transform: translateY(120%);} 100% {transform: translateY(0);}
}
.cookie-banner p { color: #fff; font-size: 1rem; margin: 0 12px 0 0; }
.cookie-banner .cookie-btn {
  background: #fff;
  color: var(--color-vibrant2);
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-right: 10px;
  padding: 10px 24px;
  border: 2px solid var(--color-vibrant2);
  box-shadow: 0 1px 10px 0 rgba(255,207,0,0.13);
  transition: background 0.17s, color 0.17s, border-color 0.14s;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-vibrant3);
  color: var(--color-primary);
  border: 2px solid var(--color-vibrant3);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--color-vibrant1);
  color: var(--color-primary);
  border: 2px solid var(--color-vibrant1);
}
.cookie-banner .cookie-btn.cookie-settings:hover, .cookie-banner .cookie-btn.cookie-settings:focus {
  background: var(--color-vibrant2);
  color: #fff;
  border: 2px solid var(--color-vibrant2);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 200000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,86,127,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalCookie .6s cubic-bezier(.2,1,.24,0.93);
}
@keyframes fadeInModalCookie {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-dark);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 8px 36px 0 rgba(43,147,72,0.15);
  max-width: 440px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  color: var(--color-vibrant2);
  font-size: 1.42rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: transparent;
  border: none; font-size: 1.65rem;
  color: var(--color-primary);
  border-radius: 8px;
  transition: background 0.14s;color 0.14s;
  z-index: 20;
}
.cookie-modal-content .modal-close:hover,
.cookie-modal-content .modal-close:focus {
  background: var(--color-vibrant3);
  color: var(--color-vibrant2);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 7px 0;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0 5px;
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-vibrant2);
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  width: 100%;
}
.cookie-modal-actions .cookie-btn {
  flex: 1 1 0;
}

@media (max-width: 700px) {
  .cookie-modal-content { padding: 18px 8px; font-size: 0.97rem; }
}

/* =====================================================
   RESPONSIVE: GENERAL, FLEX DIRECTION ADJUSTMENTS
====================================================== */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1rem; }
  .section, .testimonials { padding: 22px 5px; }
}

/* =====================================================
   ACCESSIBILITY FIXES
====================================================== */
@media (max-width: 480px) {
  html { font-size: 97%; }
}

/* =====================================================
   ANIMATION HINTS / MICRO-INTERACTIONS
====================================================== */
.cta-btn, .main-nav a, .mobile-nav a, .service-card, .feature, .usp, .team-member, .footer-nav a, .footer-legal a, .footer-social a img {
  will-change: transform, box-shadow, color, background, border-color;
}

/* END CSS */
