/* CSS 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,
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%;
  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: #F6F8FA;
  color: #235476;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
*:focus {
  outline: 2px solid #ED9D2F;
  outline-offset: 2px;
}

/* --- BRAND COLORS AND FONTS --- */
:root {
  --color-primary: #235476;
  --color-secondary: #F6F8FA;
  --color-accent: #ED9D2F;
  --color-dark: #212531;
  --color-success: #14B885;
  --color-danger: #EF466F;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(35,84,118,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.logo-link img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.main-nav a {
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.btn.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 32px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 8px 0 rgba(237,157,47,0.15);
  transition: background 0.19s, transform 0.19s;
  letter-spacing: 0.02em;
  margin-left: 20px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #fdb200;
  transform: translateY(-2px) scale(1.04);
  color: #235476;
}
.btn.btn-secondary {
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 11px 22px;
  font-size: 17px;
  transition: all 0.18s;
  margin-top: 16px;
  cursor: pointer;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,84,118,0.09);
  transition: background 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fdb200;
  color: #235476;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1020;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.9,0,.28,1);
  display: flex;
  flex-direction: column;
  padding: 0 0 24px 0;
  box-shadow: 0 6px 32px 0 rgba(35,84,118,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.7rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 20px 40px;
}
.mobile-nav a {
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--color-primary);
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* --- HERO BANNER --- */
.hero {
  background: linear-gradient(90deg, #fbd12f 0 2%, #ED9D2F 80% 100%);
  background-color: #ED9D2F; /* fallback */
  color: var(--color-primary);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 32px 0 0 0;
}
.hero .container { display: flex; }
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  color: #235476;
  letter-spacing: 0.01em;
  text-shadow: 2px 3px 0 rgba(255,255,255,0.38);
  margin-bottom: 8px;
}
.hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.hero .btn { margin-top: 12px; }

/* --- SECTION SPACING & PATTERN --- */
section { margin-bottom: 60px; padding: 40px 20px; }
.features, .about, .services-preview, .testimonials, .steps, .services-detail, .faq, .guide-steps, .resources, .articles, .newsletter-cta {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(35,84,118,0.04);
}

/* FLEX PATTERN WRAPPERS */
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fffbe6;
  box-shadow: 0 2px 16px 0 rgba(35,84,118,0.06);
  border-left: 5px solid var(--color-accent);
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  max-width: 400px;
  flex: 1 1 270px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px;
  background: #f3fae9;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,84,118,0.07);
  min-width: 220px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  border-left: 6px solid #235476;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 32px 0 rgba(237,157,47,0.13);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.feature-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #2b2c32;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #48506a;
  font-style: italic;
}
.testimonial-card div {
  color: var(--color-accent);
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: bold;
}

/* --- SERVICES PREVIEW --- */
.services-preview ul {
  margin: 18px 0 14px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: column;
}
.services-preview ul li {
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  background: #e2edff;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  min-width: 200px;
  align-items: center;
}
.services-preview ul li span {
  color: var(--color-accent);
  font-size: 0.98rem;
}

/* --- ABOUT US & TEAM --- */
.values-list {
  margin-left: 18px;
  padding-left: 0;
}
.values-list li {
  margin-bottom: 7px;
  padding-left: 12px;
  position: relative;
  font-size: 1rem;
  color: #235476;
}
.values-list li:before {
  content: '\2022';
  color: var(--color-accent);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.3em;
  vertical-align: middle;
}
.team-member-bios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.team-member {
  background: #fffbe5;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(237,157,47,0.09);
  padding: 20px 16px;
  min-width: 220px;
  flex: 1 1 200px;
  margin-bottom: 20px;
}
.team-member h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.13rem;
}
.team-member p {
  color: #44454a;
}
.qualifications-list {
  margin-top: 30px;
}
.qualifications-list ul li {
  padding-left: 8px;
  color: #2b2c32;
  font-size: 1rem;
  margin-bottom: 6px;
  position: relative;
}
.qualifications-list ul li:before {
  content: '\2714';
  color: var(--color-primary);
  margin-right: 10px;
}

/* --- SERVICES DETAIL PAGE --- */
.services-detail .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #edefff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(35,84,118,0.06);
  padding: 22px 18px 20px 18px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 32px 0 rgba(35,84,118,0.13);
  background: #ed9d2f22;
  transform: scale(1.04) rotate(2deg);
}
.service-card img {
  width: 40px;
  height: 40px;
}
.service-card h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
}
.service-card p {
  color: #353535;
}
.service-card strong {
  color: var(--color-accent);
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.services-detail table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(35,84,118,0.11);
}
.services-detail th, .services-detail td {
  padding: 11px 12px;
  text-align: left;
  color: #235476;
}
.services-detail thead tr {
  background: #deebff;
}
.services-detail tbody tr:nth-child(even) {
  background: #f6f8fa;
}
.services-detail tbody tr:nth-child(odd) {
  background: #fff;
}
.services-detail th {
  font-family: var(--font-display);
  font-weight: 600;
}

/* --- FAQ --- */
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #eafff5;
  border-radius: 14px;
  border-left: 5px solid var(--color-success);
  padding: 18px 16px;
  margin-bottom: 8px;
}
.faq-item h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}
.faq-item p { color: #313131; }

/* --- CAR BUYING GUIDE (step-by-step) --- */
.step-by-step-cards, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.step-card, .step-item {
  background: #feeffc;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(237,157,47,0.08);
  min-width: 200px;
  max-width: 280px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 16px 18px 16px;
  border-left: 4px solid var(--color-accent);
  transition: box-shadow 0.17s, transform 0.16s;
}
.step-card img, .step-item img {
  width: 36px;
  height: 36px;
}
.step-card:hover, .step-card:focus, .step-item:hover, .step-item:focus {
  background: #fffbe5;
  box-shadow: 0 6px 26px 0 rgba(237,157,47,0.16);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.step-card h3, .step-item h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.step-card p, .step-item p {
  color: #353535;
  font-size: 0.99rem;
}
.tips-list ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.tips-list li {
  padding-left: 16px;
  margin-bottom: 7px;
  position: relative;
  color: var(--color-primary);
}
.tips-list li:before {
  content: '\25B6';
  color: #ed9d2f;
  margin-right: 10px;
  font-size: 0.7em;
  position: absolute;
  left: 0;
  top: 2px;
}

.resources ul, .resource-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.resources a, .resource-links a {
  color: var(--color-primary);
  font-family: var(--font-display);
  padding: 9px 6px;
  border-radius: 7px;
  background: #ffefdf;
  transition: background 0.17s, color 0.17s;
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.resources a:hover, .resource-links a:hover, .resources a:focus, .resource-links a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* --- ARTICLES & NEWSLETTER --- */
.articles-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.articles-list article {
  background: #d5fdff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(35,84,118,0.09);
  padding: 18px 14px 16px 18px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
  position: relative;
}
.articles-list article:hover, .articles-list article:focus {
  background: #deebff;
  box-shadow: 0 4px 20px 0 rgba(35,84,118,0.14);
  transform: scale(1.03) rotate(-2deg);
}
.articles-list h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.articles-list p { color: #353535; }
.articles-list span {
  font-size: 0.97rem;
  color: #64708a;
}
.categories-filter ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.categories-filter a {
  background: #ffedef;
  color: var(--color-danger);
  border-radius: 12px;
  padding: 7px 13px;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 0.98rem;
  transition: background 0.17s, color 0.17s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--color-danger);
  color: #fff;
}

.newsletter-cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.newsletter-cta h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
}

/* --- THANK YOU PAGE --- */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you h1 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

/* --- CONTACT PAGE --- */
.contact-details .content-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.company-details, .map-location {
  background: #e2edff;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 1px 6px rgba(35,84,118,0.08);
  min-width: 260px;
  flex: 1 1 260px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-location img {
  height: 30px;
  width: 30px;
}

/* --- LEGAL PAGES --- */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35,84,118,0.06);
  padding: 36px 24px;
}
.legal h1, .legal h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 14px;
  font-weight: 700;
}
.legal ul {
  margin: 12px 0 14px 0;
  padding: 0 0 0 16px;
}
.legal li {
  margin-bottom: 8px;
  color: #2b2c32;
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  background: #235476;
  padding: 34px 0 0 0;
  color: #fff;
}
footer .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px 10px 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #fff;
  opacity: 0.90;
  font-size: 1rem;
  transition: opacity 0.16s;
}
footer a:hover, footer a:focus { opacity: 1; }
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}
footer .contact-info {
  font-size: 0.99rem;
}
footer .social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
footer .social-links a img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  transition: transform 0.15s;
}
footer .social-links a:hover img, footer .social-links a:focus img {
  transform: rotate(15deg) scale(1.14);
  background: #fff;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #235476;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  color: #235476;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #235476;
  margin-bottom: 6px;
}
p, li, span {
  font-size: 1rem;
  color: #212531;
  font-family: var(--font-body);
  margin-bottom: 3px;
}
a {
  color: #ED9D2F;
  font-weight: 500;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #235476;
  text-decoration: underline;
}

/* --- ANIMATIONS --- */
@keyframes playful-pop {
  0%   { transform: scale(0.94) rotate(-2deg); }
  60%  { transform: scale(1.05) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.feature-item, .service-card, .testimonial-card, .step-card, .team-member, .faq-item, .articles-list article {
  animation: playful-pop 0.65s cubic-bezier(.6,0,.5,1.1) both;
}

/* --- BUTTON & LINK MICRO-INTERACTIONS --- */
.btn, .main-nav a, .footer-nav a, .categories-filter a, .services-preview a, .resource-links a {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.19s;
}
.btn:active {
  box-shadow: 0 0 0 2px #ED9D2F44;
  transform: scale(0.98);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container, footer .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .main-nav {
    gap: 10px;
    font-size: 15px;
  }
  .team-member-bios, .step-by-step-cards, .step-list, .articles-list, .services-detail .content-wrapper, .content-grid, .testimonials .content-wrapper {
    flex-wrap: wrap;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .team-member-bios, .step-by-step-cards, .articles-list, .services-detail .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .services-detail .content-wrapper, .step-list, .articles-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn.btn-primary {
    display: none;
  }
  .hero {
    min-height: 200px;
    padding: 22px 0 0 0;
  }
  .hero h1 { font-size: 1.3rem; }
  section { padding: 22px 6px; margin-bottom: 34px; }
  .footer .content-wrapper, footer .content-wrapper, .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .testimonials .content-wrapper, .step-by-step-cards, .articles-list {
    flex-direction: column;
    gap: 12px;
  }

  .text-image-section, .team-member-bios, .step-list, .content-grid, .services-detail .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .feature-item, .service-card, .testimonial-card, .step-card, .team-member {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .logo-link img { height: 34px; }
  .hero { padding: 12px 0 0 0; }
  .hero h1 { font-size: 1rem; }
  section { border-radius: 13px; padding: 8px 4px; }
  .service-card, .feature-item, .testimonial-card, .step-card, .team-member, .faq-item {
    border-radius: 9px;
    padding: 10px 7px !important;
  }
  .footer .content-wrapper, footer .content-wrapper, .content-wrapper {
    gap: 10px;
    align-items: flex-start;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: #235476;
  box-shadow: 0 -2px 18px 0 rgba(237,157,47,0.12);
  padding: 22px 14px;
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  animation: banner-slideup 0.49s cubic-bezier(.7,0,.39,1.08);
}
@keyframes banner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 200px;
  max-width: 440px;
  font-size: 0.98rem;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-display);
  border-radius: 18px;
  border: none;
  cursor: pointer;
  padding: 9px 24px;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.17s, color 0.14s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: var(--color-success);
  color: #fff;
  box-shadow: 0 1px 8px rgba(20, 184, 133, 0.09);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #0d7d5e;
}
.cookie-banner .reject {
  background: var(--color-danger);
  color: #fff;
  box-shadow: 0 1px 8px rgba(239,70,111,0.09);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #cc2855;
}
.cookie-banner .settings {
  background: #fff;
  border: 2px solid #ed9d2f;
  color: #ed9d2f;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ed9d2f;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 440px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 40px 0 rgba(35,84,118,0.22);
  transform: translate(-50%, -60%) scale(0.95);
  z-index: 1300;
  padding: 28px 22px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  animation: modal-fadein 0.33s cubic-bezier(.7,0,.39,1.08);
}
.cookie-modal.open {
  display: flex;
  transform: translate(-50%, -50%) scale(1);
  animation: modal-fadein 0.4s cubic-bezier(.89,0,.2,1.07);
}
@keyframes modal-fadein {
  0% { opacity: 0; transform: translate(-50%, -40%) scale(0.93); }
  75% { opacity: 1; transform: translate(-50%, -52%) scale(1.04); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.29rem;
  color: #235476;
  font-weight: 700;
  margin-bottom: 13px;
}
.cookie-modal .category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: #235476;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 22px;
  height: 22px;
  border-radius: 7px;
  cursor: pointer;
}
.cookie-modal .essential-label {
  color: #14B885;
  font-weight: bold;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal__actions button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 20px;
  cursor: pointer;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  background: var(--color-primary);
}
@media (max-width: 500px) {
  .cookie-modal { max-width: 98vw; padding: 14px 6px; }
  .cookie-banner { flex-direction: column; gap: 9px; }
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 13px;
  background: #e2edff;
}
::-webkit-scrollbar-thumb {
  background: #ED9D2F;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: #235476; }

/* --- END OF CSS --- */
