/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #F4F7FA 0%, #EAEFF5 100%);
  color: #033B63;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #033B63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFB638;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
button, .cta-btn {
  cursor: pointer;
  outline: none;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: bold;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #033B63;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flexbox Spacing & Alignment Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(3,59,99,0.08);
  padding: 24px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(3,59,99,0.14);
  transform: translateY(-4px) scale(1.01);
  z-index: 1;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 24px 0 rgba(3,59,99,0.10);
  margin-bottom: 20px;
  color: #033B63;
  min-width: 250px;
  max-width: 420px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(3,59,99,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header Navigation */
header {
  background: linear-gradient(90deg, #033B63 0%, #1270B0 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(3,59,99,0.08);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 16px;
}
header .container > a img,
.footer-logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: #FFB638;
  border-radius: 2px;
  margin-top: 3px;
  transition: width 0.2s;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFB638;
}
.cta-btn {
  background: linear-gradient(90deg, #FFB638 0%, #FFE395 100%);
  color: #033B63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(255,182,56,0.12);
  border: none;
  letter-spacing: 0.03em;
  margin-left: 10px;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFC85C 10%, #FFB638 90%);
  color: #033B63;
  box-shadow: 0 4px 20px rgba(255,182,56,0.17);
  transform: scale(1.04);
}

/* Mobile Nav */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  z-index: 101;
  display: none;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(255,182,56,0.14);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #033B63;
  color: #fff;
  z-index: 1400;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.67,0,0.33,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 26px 26px 26px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFB638;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 32px;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  background: rgba(255,182,56,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFB638;
}

/* Hide desktop nav on mobile, hide burger on desktop */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #033B63 0%, #147AC2 100%);
  color: #fff;
  padding: 56px 0 46px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.hero .cta-btn {
  border: 2px solid #fff;
  box-shadow: 0 2px 12px rgba(255,255,255,0.08);
}

/* Features / Services / Solutions Grid */
.feature-grid, .service-grid, .solutions-list, .fleet-list, .industry-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .service-grid > div, .solutions-list > div, .fleet-list > div, .industry-grid > div, .service-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(3,59,99,0.08);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div:hover, .service-grid > div:hover, .solutions-list > div:hover, .fleet-list > div:hover, .industry-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 2px 20px 0 rgba(3,59,99,0.11);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .service-grid img, .solutions-list img, .fleet-list img, .industry-grid img, .service-list img {
  height: 42px;
  width: 42px;
  margin-bottom: 12px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #FFB638 0%, #F4F7FA 100%);
  border-radius: 24px;
  margin: 30px 0 0 0;
  padding: 42px 0 38px 0;
  box-shadow: 0 3px 24px 0 rgba(255,182,56,0.09);
  color: #033B63;
}
.cta-banner h2 {
  color: #033B63;
  margin-bottom: 10px;
}
.cta-banner p {
  color: #033B63;
  margin-bottom: 22px;
}
.cta-banner .cta-btn {
  background: linear-gradient(90deg, #033B63 0%, #1270B0 100%);
  color: #fff;
  border: none;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #FFB638;
  color: #033B63;
}

/* Testimonials / Reviews */
.testimonials {
  background: #F4F7FA;
  padding: 42px 0 32px 0;
  margin-bottom: 36px;
}
.testimonials h2 {
  color: #033B63;
  text-align: center;
  margin-bottom: 36px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #033B63;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #033B63;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* Table (tariffe) */
table {
  width: 100%;
  margin-bottom: 26px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 1px 12px rgba(3,59,99,0.07);
  border-radius: 12px;
  overflow: hidden;
}
thead th {
  background: #033B63;
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 8px;
  letter-spacing: 0.01em;
}
tbody td {
  padding: 14px 7px;
  border-bottom: 1px solid #EAEFF5;
  font-size: 1.04rem;
  color: #033B63;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Footer Styles */
footer {
  background: #033B63;
  color: #fff;
  padding: 38px 0 14px 0;
  margin-top: 42px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo {
  flex: 0 0 auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}
.footer-nav a {
  color: #FFB638;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  opacity: 0.90;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #033B63;
  box-shadow: 0 -2px 12px rgba(3,59,99,0.13);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 3000;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-btn {
  margin: 0 8px 0 0;
  padding: 9px 20px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  background: #FFB638;
  color: #033B63;
  box-shadow: 0 2px 10px rgba(255,182,56,0.09);
  transition: background 0.16s, color 0.13s, box-shadow 0.16s;
}
.cookie-banner .cookie-btn.accept {
  background: linear-gradient(90deg, #FFB638 0%, #FFE395 100%);
}
.cookie-banner .cookie-btn.reject {
  background: #E1E7EE;
  color: #033B63;
  border: 1px solid #033B63;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #033B63;
  border: 1px solid #FFB638;
}
.cookie-banner .cookie-btn:hover {
  background: #033B63;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(3,59,99,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px 0 rgba(3,59,99,0.18);
  padding: 38px 36px 26px 36px;
  min-width: 320px;
  max-width: 98vw;
  color: #033B63;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 11px;
}
.cookie-modal-content .cookie-switch {
  width: 42px;
  height: 22px;
  background: #E1E7EE;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-content .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal-content .cookie-switch .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #FFB638;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-modal-content .cookie-switch input[type="checkbox"]:checked + .slider {
  left: 22px;
  background: #033B63;
}
.cookie-modal-content .category-label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal-content .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  color: #033B63;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal-content .close-btn:hover,
.cookie-modal-content .close-btn:focus {
  color: #FFB638;
}

/* Content Styles for About, Contact, Legal, Timeline, Faq, etc */
.content-wrapper, .policy-text, .gdpr-text, .terms-text, .user-responsibilities, .faqs, .faq-list {
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.policy-text ul, .gdpr-text ul, .terms-text ul, .user-responsibilities ul {
  margin-left: 1em;
  margin-bottom: 1em;
}
.policy-text li, .gdpr-text li, .terms-text li, .user-responsibilities li {
  margin-bottom: 0.5em;
}
.timeline {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}
.timeline li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 18px;
}
.timeline li:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #FFB638;
  border-radius: 50%;
  z-index: 1;
}

/* Pricing Table & Inclusions */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.included-services {
  background: #EAEFF5;
  border-radius: 12px;
  padding: 18px 17px 12px 22px;
  font-size: 1.06rem;
  color: #033B63;
  margin: 0;
  min-width: 220px;
}
.included-services li {
  margin-bottom: 10px;
  padding-left: 0.8em;
  position: relative;
}
.included-services li:before {
  content: '✓';
  color: #FFB638;
  position: absolute;
  left: -1em;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(3,59,99,0.08);
  padding: 18px 22px;
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 340px;
}

/* Legal pages and Address */
address {
  font-style: normal;
  color: #033B63;
  padding-bottom: 4px;
  font-weight: 600;
}

/* Button & Form Interaction Animations */
button, .cta-btn, .cookie-btn {
  transition: background 0.16s, box-shadow 0.14s, color 0.14s, transform 0.12s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.hide { display: none !important; }

/* Responsive Layouts & Typography */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 991px) {
  .container { max-width: 728px; }
  .card-container, .feature-grid, .service-grid, .solutions-list, .fleet-list, .industry-grid, .service-list, .faq-list, .content-grid {
    flex-direction: column;
  }
  .footer-logo { margin-bottom: 18px; }
  .footer-nav { margin-bottom: 18px; }
  .footer-contact { margin-top: 18px; }
  footer .container { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { margin-bottom: 36px; padding: 28px 6px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 34px 0 30px 0; }
  .hero h1 { font-size: 1.5rem; }
  .content-wrapper, .content-grid, .faq-list { gap: 14px; }
  .testimonial-slider { gap: 14px; }
  .pricing-table { flex-direction: column; gap: 22px; }
  .card, .feature-grid > div, .service-grid > div, .solutions-list > div, .fleet-list > div, .industry-grid > div, .faq-list > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .cta-banner { padding: 22px 0 18px 0; border-radius: 14px; }
  .cookie-modal-content { max-width: 95vw; padding: 18px 9px 11px 14px; }
  .testimonials { padding: 24px 0 14px 0; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-logo img { height: 35px; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .cta-btn, .cookie-banner .cookie-btn { font-size: 0.93em; padding: 9px 15px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .footer-logo img { height: 28px; }
}
