/* =========================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape. */
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1a1a1a;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color .18s cubic-bezier(.4,0,.2,1);
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}

/* ==================================
   BRAND PALETTE & CSS VARIABLES
   ================================== */
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #E9C46A;
  --color-accent: #F5F5F4;
  --color-text: #151515;
  --color-light: #fafafb;
  --color-dark: #111112;
  --color-border: #e0e0e0;
  --color-grey: #6c6c6c;
  --color-mid-grey: #bcbcbc;
  --color-focus: #264653;
  --shadow-lg: 0 8px 32px 0 rgba(25,25,25,0.14);
  --shadow-sm: 0 2px 6px 0 rgba(30,30,30,0.10);
  --transition: all .18s cubic-bezier(.4,0,.2,1);
  --radius: 14px;
  --radius-sm: 8px;
  --container-width: 1200px;
}

/* =============================
   TYPOGRAPHY SCALE
   ============================= */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 18px;
  line-height: 1.22;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #191919;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, .h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #232323;
  margin-bottom: 8px;
}
p, ul li, ol li {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.7;
}
.subdued {
  color: var(--color-grey);
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* =============================
   CONTAINER, SECTIONS, WRAPPERS
   ============================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===================
   HEADER/NAVIGATION
   =================== */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header nav {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  min-height: 74px;
}
header nav > a img {
  height: 40px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1a1a1a;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: #ececec;
  color: var(--color-focus);
}
.cta-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  border-radius: var(--radius);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 30px;
  margin-left: 8px;
  letter-spacing: 0.1em;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #333;
  color: var(--color-secondary);
  box-shadow: 0 4px 18px 0 rgba(25,25,25,0.16);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #111;
  border: 2px solid #d3d3d3;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1031;
  transition: var(--transition);
  margin-left: 10px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-focus);
  color: var(--color-focus);
}

.mobile-menu {
  display: none; /* default, show with .open */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 15, 0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 26px 24px 0 0;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-secondary);
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
  transition: color var(--transition);
  padding: 8px 0;
  border-radius: var(--radius-sm);
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-secondary);
  background: #232323;
  outline: none;
}

@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
  header nav {
    max-width: 950px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 850px) {
  header nav ul { gap: 8px; }
  .cta-btn {
    padding: 12px 18px;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.45rem; }
}
@media (max-width: 900px) {
  .content-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  header nav ul,
  header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container { padding-left: 10px; padding-right: 10px; }
  .section, section { padding: 30px 8px; margin-bottom: 40px; }
  h1, .h1 { font-size: 1.42rem; }
  h2, .h2 { font-size: 1.15rem; }
  h3, .h3 { font-size: 1.02rem; }
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  background: #fff;
  padding-top: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--color-border);
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  color: #151515;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.hero-section p {
  color: #4b4b4b;
  font-size: 1.14rem;
  margin-bottom: 32px;
}
.hero-section .cta-btn {
  margin-top: 12px;
  font-size: 1.17rem;
}
@media (max-width: 850px) {
  .hero-section h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .hero-section { padding-top: 25px; padding-bottom: 25px; }
  .hero-section h1 { font-size: 1.28rem; }
}

/* ==============
   FLEX GRIDS
   ==============
   Every grid is made by flex only!
*/
.feature-grid, .benefits-grid, .fleet-categories, .cards-grid, .services-list, .offers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fleet-categories > div, .feature-grid > div, .benefits-grid > div, .offers-list > div {
  flex: 1 1 210px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 28px 24px 20px 24px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
  border: 1.5px solid #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.fleet-categories > div:hover,
.feature-grid > div:hover,
.benefits-grid > div:hover,
.offers-list > div:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-dark);
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  margin-bottom: 20px;
  min-width: 210px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1.5px solid #e2e2e2;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
  align-items: flex-start;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 32px 0 rgba(30,30,30,0.14);
  border-color: var(--color-focus);
  z-index: 2;
}
.service-card .price {
  font-size: 1.09rem;
  font-weight: 700;
  color: var(--color-focus);
  background: #F5F5F4;
  border-radius: var(--radius-sm);
  padding: 7px 13px;
  margin-top: auto;
  letter-spacing: 0.04em;
}
.cards-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.promo-banner {
  background: #111112;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), background var(--transition);
  border-left: 8px solid var(--color-focus);
}
.promo-banner:hover {
  background: #232323;
  box-shadow: var(--shadow-lg);
}
.limited-time-deals {
  background: #f4f4f4;
  border-radius: var(--radius);
  padding: 17px 24px;
  margin-bottom: 20px;
}
.limited-time-deals h3 {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.limited-time-deals ul {
  margin-left: 20px;
  color: #464646;
}

/**** Responsive Flex Grids ****/
@media (max-width: 900px) {
  .cards-grid, .services-list, .feature-grid, .fleet-categories, .benefits-grid, .offers-list {
    gap: 16px;
  }
  .fleet-categories > div,
  .feature-grid > div,
  .benefits-grid > div,
  .offers-list > div {
    padding: 18px 10px 12px 16px;
  }
}
@media (max-width: 768px) {
  .cards-grid, .services-list, .feature-grid, .fees-grid, .benefits-grid, .fleet-categories, .offers-list {
    flex-direction: column;
    gap: 14px;
  }
  .cards-grid > *, .feature-grid > *, .benefits-grid > *, .fleet-categories > *, .services-list > *, .offers-list > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/**** Section and card container spacing ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  padding: 22px;
  position: relative;
  transition: box-shadow var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
}

/**** FAQ Accordion ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 19px 18px 16px 22px;
  border-left: 6px solid #1a1a1a;
  margin-bottom: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-accordion > div:hover {
  border-left-color: var(--color-focus);
  box-shadow: var(--shadow-lg);
}
.faq-accordion h2 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #232323;
}

/**** 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;
    gap: 16px;
    align-items: flex-start;
  }
}

/**** Testimonial Carousel / Cards ****/
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #f7f7f7;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 370px;
  position: relative;
  border-left: 6px solid var(--color-focus);
  font-style: italic;
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.testimonial-card .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 3px;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.06rem;
  margin: 0 0 8px 0;
  text-align: center;
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: #444;
  font-weight: 500;
  text-align: center;
  font-style: normal;
}
@media (max-width: 768px) {
  .testimonial-carousel {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card { max-width: 100%; min-width: 0; }
}

/**** CTA Banner ****/
.content-wrapper > .cta-btn {
  margin-top: 14px;
  align-self: flex-start;
}

/**** Table Styles ****/
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  margin: 18px 0 28px 0;
  overflow: hidden;
  font-size: 0.99rem;
}
thead tr {
  background: #181818;
  color: #fff;
}
td, th {
  padding: 13px 14px;
  border-bottom: 1px solid #ededed;
  text-align: left;
}
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #f5f5f5; }
tbody tr:hover { background: #ededed; }
@media (max-width: 700px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  thead { display: none; }
  td { border: none; padding: 11px 6px; }
  tbody tr { margin-bottom: 13px; }
}

/**** Utilities / Generic Classes ****/
.bg-accent { background: var(--color-accent); }
.bg-light { background: #f6f6f6; }
.text-dark { color: #111; }
.text-light { color: #fff; }

/**** Cards, Info Boxes, Feature Item ****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**** Contacts Info block ****/
.contacts-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.contacts-info > div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  padding: 13px 18px;
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  color: #232323;
}
.contacts-info img {
  width: 22px; height: 22px;
}

/**** Business hours, Office address ****/
.business-hours, .office-address {
  background: #f7f7fa;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 8px;
  color: #181818;
}

/**** Map location block ****/
.map-location {
  margin-bottom: 15px;
}

/**** Thank you message ****/
.thank-you-message {
  padding: 17px 22px;
  background: #f8f8f8;
  border-radius: var(--radius-sm);
  color: #191919;
  font-size: 1.10rem;
  border-left: 5px solid var(--color-focus);
  margin-bottom: 20px;
}

/**** Text section for policy, about, etc. ****/
.text-section, .policy-text, .gdpr-text, .cookies-text, .terms-text {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px; 
  margin-bottom: 20px;
}
.text-section ul, .policy-text ul, .gdpr-text ul, .cookies-text ul, .terms-text ul {
  list-style-type: disc;
  margin-left: 22px;
  margin-bottom: 13px;
}

/**** Spacing for contact-for-more ****/
.contact-for-more {
  margin-top: 18px;
  margin-bottom: 24px;
  padding: 10px 13px 10px 16px;
  background: #f0f0f0;
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  color: #232323;
}

/**** Footer ****/
footer {
  background: #181818;
  color: #fafafa;
  padding-top: 32px;
  padding-bottom: 14px;
  margin-top: 40px;
  border-top: 1px solid #242424;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav ul {
  display: flex;
  gap: 26px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav ul li a {
  color: #fafafa;
  font-size: 1.02rem;
  transition: color var(--transition), text-decoration var(--transition);
  text-decoration: underline dotted #393939 1.5px;
  padding: 3px 0;
  border-radius: 0;
}
.footer-nav ul li a:hover {
  color: var(--color-secondary);
}
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}
.footer-info img {
  max-width: 46px;
  border-radius: 7px;
  margin-right: 10px;
}
.footer-info address, .footer-info p {
  color: #c3c3c3;
  margin-bottom: 3px;
  font-size: 0.98rem;
}
.footer-info a {
  color: #e9c46a;
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer .container {
    gap: 10px;
  }
  .footer-info { gap: 0; flex-direction: column; }
}

/**** Scrollbar styling (non-essential UI) ****/
::-webkit-scrollbar { width: 9px; background: #fafafa; }
::-webkit-scrollbar-thumb { background: #d6d6d6; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #c4c4c4; }

/**** BUTTONS, HOVERS, AND micro-interactions ****/
button:focus, a:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
}
button:active, a:active {
  opacity: 0.93;
}

/**** Animations ****/
@keyframes fade-in {
  from {opacity:0; transform: translateY(18px);}
  to {opacity:1; transform: none;}
}
.section, .card, .service-card, .fleet-categories > div, .testimonial-card, .promo-banner {
  animation: fade-in .71s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/**** cookie consent banner ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: #fff;
  box-shadow: 0 -4px 22px 0 rgba(0,0,0,0.12);
  border-top: 1.5px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 10vw 20px 10vw;
  font-size: 1.03rem;
  animation: fade-in .8s cubic-bezier(.24,.6,.35,1.02) both;
}
.cookie-banner-content {
  color: #2a2a2a;
  flex: 1 1 250px;
  padding-right: 10px;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 7px 22px;
  background: #1a1a1a;
  color: #fff;
  transition: var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: #1a1a1a;
}
.cookie-btn.secondary {
  background: #ededed;
  color: #191919;
  border: 1.5px solid #d6d6d6;
}
.cookie-btn.secondary:hover {
  background: #f4f4f4;
  color: var(--color-focus);
}

/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 22, 0.74);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .3s cubic-bezier(.22,.6,.4,1) both;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  width: 95vw;
  max-width: 386px;
  box-shadow: var(--shadow-lg);
  padding: 34px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #181818;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1.03rem;
  font-weight: 500;
  color: #232323;
  flex: 1;
  cursor: pointer;
}
.cookie-toggle {
  width: 36px; height: 20px;
  border-radius: 11px;
  background: #ddd;
  position: relative;
  transition: background .2s;
  margin-left: 6px;
  flex-shrink: 0;
}
.cookie-toggle[data-checked="true"] {
  background: #1a1a1a;
}
.cookie-toggle-inner {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1.8px; top: 1px;
  transition: left .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.cookie-toggle[data-checked="true"] .cookie-toggle-inner {
  left: 16px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #222;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition);
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f4f4f4;
  color: var(--color-focus);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 18px 6vw 18px 6vw; font-size: .968rem; flex-direction: column; gap: 10px; }
  .cookie-modal { padding: 16px 8px 10px 12px; }
  .cookie-modal-buttons { flex-direction: column; gap:7px; }
}

/* ================================
   MICRO-ANIMATIONS & TRANSITIONS
   ================================ */
.card, .service-card, .testimonial-card, .promo-banner, .fleet-categories > div, .feature-grid > div, .benefits-grid > div {
  transition: box-shadow .19s cubic-bezier(.4,0,.2,1) 0s, transform .19s cubic-bezier(.4,0,.2,1) 0s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .promo-banner:hover, .fleet-categories > div:hover, .feature-grid > div:hover, .benefits-grid > div:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/**** Media queries for extra small devices ****/
@media (max-width: 480px) {  
  h1, .h1 { font-size: 1.09rem; }
  h2, .h2 { font-size: 0.93rem; }
  h3, .h3 { font-size: 0.88rem; }
  .section, section { padding: 16px 3px; }
}

/**** SPECIAL: Make sure cards never overlap or overflow ****/
.cards-grid > *, .services-list > *, .feature-grid > *, .benefits-grid > *, .fleet-categories > *, .offers-list > * {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 0;
}

/* End of the file */
