/* Reset & Normalize */
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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #223A60;
  background: #fff;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223A60;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
p, li, ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #223A60;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; }
a {
  color: #223A60;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #71A2B6;
  text-decoration: underline;
}
ul, ol { list-style: none; margin-left: 0; }
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  color: #223A60;
  background: #fff;
  border: 1px solid #E5EBF0;
  outline: none;
  border-radius: 5px;
  padding: 10px 14px;
  margin-bottom: 0;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: #71A2B6;
  background: #F7FAFC;
}

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34, 58, 96, 0.04);
  transition: box-shadow 0.2s;
}
section:last-child {
  margin-bottom: 0;
}

/* Header styles */
header {
  background: #fff;
  border-bottom: 1px solid #E5EBF0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
  padding: 0 20px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #223A60;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #71A2B6;
  border-bottom: 2px solid #71A2B6;
  background: none;
}
header .cta-button {
  margin-left: 18px;
}
header img {
  width: 155px;
  height: auto;
  border-radius: 0;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #223A60;
  border: none;
  border-radius: 8px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,58,96,0.07);
  transition: background 0.18s, box-shadow 0.18s, transform 0.17s;
  outline: none;
  text-align: center;
  margin-top: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #71A2B6;
  color: #fff;
  box-shadow: 0 4px 22px rgba(113, 162, 182, 0.13);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* Burger Menu */
.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  color: #223A60;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1201;
  transition: background 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F0F6FA;
  box-shadow: 0 2px 12px rgba(34,58,96,0.1);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 58, 96, 0.97);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.23s cubic-bezier(0.4,0,0.2,1), transform 0.37s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  margin: 26px 30px 16px 16px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 2011;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5C06E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 65px 50px 30px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  border-radius: 3px;
  transition: background 0.12s, color 0.18s, border-bottom 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5C06E;
  border-bottom: 1px solid #F5C06E;
  background: rgba(245, 192, 110,0.11);
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  header img { width: 120px; }
}
@media (max-width: 900px) {
  header .container {
    gap: 0;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 2px;
    height: 58px;
    padding: 0 10px;
  }
  header nav {
    display: none;
  }
  .cta-button { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Main/Sections Responsive Flex Layouts */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 11px rgba(34, 58, 96, 0.045);
  padding: 24px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 34px rgba(113, 162, 182, 0.15);
  transform: translateY(-2px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(34, 58, 96, 0.07), 0 1.5px 3px 0 rgba(34, 58, 96, 0.03);
  min-width: 260px;
  max-width: 360px;
  color: #223A60;
  font-size: 1.14rem;
  transition: box-shadow 0.16s;
}
.testimonial-name {
  margin-top: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #223A60;
  opacity: 0.85;
}
.testimonial-card p {
  color: #223A60;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 6px 40px rgba(113, 162, 182, 0.15);
}

/* Features/Grid Styles */
.features {
  background: #F5F8FA;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(113, 162, 182, 0.06);
}
.features .feature-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 18px;
}
.features li, .feature {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(113, 162, 182, 0.11);
  padding: 24px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.features li:hover, .feature:hover {
  box-shadow: 0 8px 32px rgba(245, 192, 110,0.13);
  transform: translateY(-2px) scale(1.016);
}
.features img, .feature img { width: 44px; margin-bottom: 0; }

/* Services Preview & Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 11px rgba(34, 58, 96, 0.065);
  padding: 24px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 8px 27px rgba(245, 192, 110, 0.09);
  transform: translateY(-2px) scale(1.01);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 0;
  list-style: none;
  margin-top: 28px;
}
.service-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 13px rgba(34, 58, 96, 0.037);
  padding: 26px 22px 20px 22px;
  transition: box-shadow 0.12s, transform 0.12s;
}
.service-list li:hover {
  box-shadow: 0 8px 32px rgba(113, 162, 182, 0.14);
  transform: translateY(-2.5px);
}
.service-list .price {
  margin-left: 16px;
  font-size: 1.1rem;
  color: #71A2B6;
  font-weight: 600;
  background: #F7FAFC;
  border-radius: 7px;
  padding: 3px 11px;
}
.service-list ul {
  margin-top: 11px;
  list-style: disc inside;
  padding-left: 17px;
  color: #497093;
  font-size: 0.99rem;
}
.service-list ul li {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 6px;
}

/* Articles & Resources */
.articles .resource-controls {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.resource-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(113, 162, 182, 0.07);
  padding: 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.12s, transform 0.14s;
  margin-bottom: 20px;
}
.resource-card:hover {
  box-shadow: 0 6px 28px rgba(245,192,110,0.13);
  transform: scale(1.011);
}
.resource-link {
  color: #71A2B6;
  font-weight: 500;
  text-decoration: underline;
  margin-top: auto;
  margin-bottom: 0;
  transition: color 0.16s;
}
.resource-link:hover, .resource-link:focus {
  color: #F5C06E;
}

.search-bar {
  border: 1.5px solid #E0EBF7;
  border-radius: 7px;
  background: #F7FAFC;
  width: 210px;
  padding: 10px 14px;
  transition: border 0.15s;
}
.search-bar:focus {
  border-color: #71A2B6;
}
.categories-filter {
  border-radius: 7px;
  padding: 10px 14px;
  background: #F7FAFC;
  border: 1.5px solid #E0EBF7;
  color: #223A60;
  transition: border 0.15s;
}
.categories-filter:focus { border-color: #71A2B6; }

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(34, 58, 96, 0.045);
  padding: 18px 22px;
  transition: box-shadow 0.11s;
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  color: #223A60;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  color: #223A60;
  margin-bottom: 0;
}
.faq-item:hover,
.faq-item:focus-within {
  box-shadow: 0 3px 13px rgba(113, 162, 182, 0.08);
}

/* Team Bios */
.team-bios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(34, 58, 96, 0.032);
  padding: 20px 18px 14px 18px;
  flex: 1 1 190px;
  max-width: 250px;
  min-width: 170px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #223A60;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.13s, transform 0.12s;
}
.team-member:hover {
  box-shadow: 0 6px 30px rgba(245,192,110,0.07);
  transform: scale(1.009);
}

.achievement-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.achievement-numbers li {
  background: #F7FAFC;
  border-radius: 8px;
  padding: 15px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: #223A60;
  min-width: 210px;
  font-weight: 500;
  box-shadow: 0 1px 5px rgba(34, 58, 96, 0.035);
  margin-bottom: 8px;
}

/***************************
 * HERO SECTION
 ***************************/
.hero {
  background: #fff;
  border-radius: 16px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  box-shadow: 0 2px 20px rgba(245, 192, 110, 0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 295px;
  gap: 20px;
  max-width: 700px;
}
.hero h1 { font-size: 2.7rem; margin-bottom: 14px; }
.hero p {
  font-size: 1.15rem;
  color: #497093;
  margin-bottom: 10px;
}

/***************************
 * CTA
 ***************************/
.cta {
  background: #F5F8FA;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(113, 162, 182, 0.06);
  text-align: left;
  padding: 40px 18px 40px 18px;
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  color: #223A60;
  font-size: 2.1rem;
}
.cta p { color: #497093; margin-bottom: 20px; }

/***************************
 * CLIENTS/LOGOS
 ***************************/
.client-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 38px;
  margin-bottom: 5px;
  justify-content: flex-start;
}
.client-logos img {
  width: 75px;
  min-width: 55px;
  filter: grayscale(0.18) brightness(0.95);
  opacity: 0.76;
  transition: filter 0.23s, opacity 0.18s;
}
.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/***************************
 * LEGAL / POLICIES SECTIONS
 ***************************/
.legal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 13px rgba(113, 162, 182, 0.04);
  padding: 40px 18px 40px 18px;
  color: #223A60;
}
.legal h1 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}
.legal h2 {
  margin-top: 18px;
  font-size: 1.3rem;
  color: #223A60;
}
.legal ul {
  list-style: disc inside;
  color: #497093;
  margin-top: 7px;
  padding-left: 13px;
}
.legal a { color: #71A2B6; text-decoration: underline; }

/***************************
 * CONTACT PAGE
 ***************************/
.contact-form .content-wrapper,
.contact-form .text-section,
.contact-form .contact-info,
.contact-form .location-map {
  gap: 12px;
  align-items: flex-start;
}
.contact-info h2, .location-map h2 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-info p, .location-map p { margin-bottom: 6px; color: #497093; font-size: 1.01rem; }
.contact-info a {
  color: #71A2B6;
  text-decoration: underline;
}

/***************************
 * THANK YOU
 ***************************/
.thank-you {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(245,192,110,0.13);
  padding: 40px 20px 40px 20px;
  text-align: left;
}
.thank-you .cta-button {
  margin-top: 26px;
}
.thank-you h1 { margin-bottom: 14px; }
.thank-you ul { margin-bottom: 10px; list-style: disc inside; }

/***************************
 * INDUSTRIES PAGE
 ***************************/
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 16px 0;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.industry-list li {
  background: #F7FAFC;
  border-radius: 11px;
  padding: 13px 20px;
  min-width: 165px;
  font-size: 1.09rem;
  color: #223A60;
  box-shadow: 0 1px 5px rgba(245,192,110,0.05);
  display: flex;
  align-items: center;
  gap: 11px;
}
.industry-list img { width: 31px; }

/***************************
 * FOOTER
 ***************************/
footer {
  background: #F5F8FA;
  border-top: 1px solid #E5EBF0;
  padding: 28px 0 13px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
footer nav a {
  color: #497093;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.17s, text-decoration 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #223A60;
  text-decoration: underline;
}
footer p {
  color: #7C8BA8;
  font-size: 0.99rem;
  margin: 0;
}

/***************************
 * RESPONSIVE MEDIA QUERIES
 ***************************/
@media (max-width: 1150px) { .container { max-width: 97vw; } }
@media (max-width: 950px) {
  .container { max-width: 100vw; }
  .feature-grid, .client-logos, .team-bios, .service-cards, .resource-cards, .achievement-numbers, .industry-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  section, .hero, .legal, .thank-you, .cta {
    padding: 27px 7px 27px 7px;
    border-radius: 7px;
  }
  .content-grid, .card-container, .feature-grid, .service-cards, .client-logos, .team-bios, .resource-cards, .achievement-numbers, .industry-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero h1 { font-size: 2rem; }
  .cta h2 { font-size: 1.3rem; }
  .section { margin-bottom: 44px; }
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
  footer nav {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
  }
  .service-card, .feature, .features li, .testimonial-card, .team-member, .resource-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
  .achievement-numbers li, .industry-list li {
    min-width: 0;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 540px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 1.5rem; }
  .cta h2 { font-size: 1.17rem; }
  .content-wrapper { gap: 14px; }
  .section { margin-bottom: 32px; padding: 15px 0 15px 0; }
}

/***************************
 * MICRO-INTERACTIONS
 ***************************/
button, .cta-button, .service-card, .testimonial-card, .resource-card, .feature, .features li, .card {
  transition: box-shadow 0.18s, background 0.15s, color 0.14s, transform 0.17s;
}
input, .search-bar, .categories-filter { transition: box-shadow 0.18s, background 0.14s; }

/***************************
 * COOKIE CONSENT BANNER
 ***************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: #223A60;
  box-shadow: 0 -2px 18px rgba(34,58,96,0.08);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 5vw 22px 5vw;
  gap: 30px;
  font-size: 0.99rem;
  border-top: 1px solid #E5EBF0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.22s cubic-bezier(0.67,0.1,0.32,1.23), transform 0.22s cubic-bezier(0.67,0.1,0.32,1.23);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 415px;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: #223A60;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 26px;
  cursor: pointer;
  margin-right: 2px;
  box-shadow: 0 2px 8px rgba(34,58,96,0.05);
  transition: background 0.14s, box-shadow 0.13s, transform 0.09s;
}
.cookie-btn.settings {
  background: #F5C06E;
  color: #223A60;
  font-weight: 600;
}
.cookie-btn.reject {
  background: #F6F8F9;
  color: #223A60;
  border: 1.2px solid #E5EBF0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #71A2B6;
  color: #fff;
  box-shadow: 0 5px 24px rgba(245,192,110,0.14);
  transform: translateY(-2px);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E5EBF0;
  color: #223A60;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FBE4B2;
  color: #223A60;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 2vw 15px 2vw;
  }
  .cookie-banner .banner-actions { width: 100%; gap: 10px; }
  .cookie-banner .banner-content { max-width: 97vw; }
}

/***************************
 * COOKIE PREFERENCES MODAL
 ***************************/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 58, 96, 0.16);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s, backdrop-filter 0.18s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-box {
  background: #fff;
  color: #223A60;
  border-radius: 14px;
  box-shadow: 0 8px 60px rgba(34,58,96,0.15);
  padding: 40px 26px 32px 26px;
  min-width: 330px;
  max-width: 95vw;
  max-height: 87vh;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  z-index: 5121;
  animation: fadeinup 0.26s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeinup {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 17px;
  background: none;
  border: none;
  color: #223A60;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 5141;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #F5C06E;
}
.cookie-modal h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #223A60;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-pref-list .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F7FAFC;
  border-radius: 8px;
  padding: 13px 17px;
}
.cookie-pref-list .cookie-category .label {
  flex: 1;
  color: #223A60;
}
.cookie-pref-list .switch {
  width: 42px;
  height: 22px;
  background: #E5EBF0;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-pref-list .switch[data-enabled="true"] {
  background: #71A2B6;
}
.cookie-pref-list .switch[data-enabled="true"] .dot {
  background: #fff;
  left: 22px;
}
.cookie-pref-list .switch .dot {
  position: absolute;
  top: 2.2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #b4bbc8;
  border-radius: 50%;
  transition: left 0.17s cubic-bezier(0.3,0.9,0.24,0.99), background 0.15s;
}
.cookie-category[data-essential="true"] .switch {
  background: #FBE4B2;
  cursor: not-allowed;
}
.cookie-category[data-essential="true"] .switch .dot {
  background: #F5C06E;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 21px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
@media (max-width: 480px) {
  .cookie-modal .modal-box {
    padding: 15px 5vw 14px 5vw;
    min-width: 0;
    max-width: 98vw;
    font-size: 0.97rem;
  }
  .cookie-pref-list .cookie-category {
    gap: 8px;
    padding: 8px 8px;
  }
  .cookie-modal .modal-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/***************************
 * GENERAL UTILITIES
 ***************************/
.bg-primary { background: #223A60 !important; }
.bg-secondary { background: #71A2B6 !important; }
.bg-accent { background: #F5C06E !important; }
.text-primary { color: #223A60 !important; }
.text-secondary { color: #71A2B6 !important; }
.text-accent { color: #F5C06E !important; }
.shadow {
  box-shadow: 0 4px 16px rgba(34,58,96,0.06) !important;
}
.rounded { border-radius: 10px !important; }
.flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }

/***************************
 * ACCESSIBILITY
 ***************************/
:focus-visible { outline: 2px solid #71A2B6; outline-offset: 1px; }

/***************************
 * OVERRIDES
 ***************************/
::-webkit-input-placeholder { color: #7C8BA8; opacity: 1; }
::-moz-placeholder { color: #7C8BA8; opacity: 1; }
:-ms-input-placeholder { color: #7C8BA8; opacity: 1; }
::placeholder { color: #7C8BA8; opacity: 1; }
.testimonial-slider {
    display: flex;
    gap: 20px;
}
/***************************
 * END OF CSS
 ***************************/
