/* === CSS RESET & BASE STYLES (Normalize + Reset) === */
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, main, 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%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #14213D;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #14213D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  font-weight: 600;
}
a:hover, a:focus {
  color: #FCA311;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid #E5E5E5;
}
th {
  background: #14213D;
  color: #fff;
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* =====================
  TYPOGRAPHY
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #14213D;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #233355;
}

/* Visual Hierarchy Emphasis */
dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 20px;
}
dd {
  margin-bottom: 16px;
}

/* =====================
  CONTAINERS & WRAPPERS
====================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-section {
  max-width: 650px;
}
/* Utility: Card Containers (for .card, .testimonial-card, etc) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(20,33,61,.12), 0 1.5px 4px rgba(252,163,17,.05);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 280px;
  max-width: 400px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1),transform 0.1s;
}
.card:hover,
.card:focus {
  box-shadow: 0 8px 32px rgba(20,33,61,0.15),0 2.5px 12px rgba(252,163,17,.05);
  transform: translateY(-4px);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* =====================
  HEADER & NAVIGATION
====================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(20,33,61,.08);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin: 0;
}
header nav ul li {
  list-style: none;
}
header nav a img {
  height: 46px;
  width: auto;
  margin-right: 16px;
  display: block;
}
.button-primary {
  padding: 12px 36px;
  background: #FCA311;
  color: #14213D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(252,163,17,.10);
  cursor: pointer;
  letter-spacing: .2px;
  text-transform: uppercase;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), color 0.2s, transform 0.1s;
  outline: none;
  margin-left: 12px;
}
.button-primary:hover, .button-primary:focus {
  background: #14213D;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(252,163,17,.16);
}

/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #14213D;
  background: none;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  line-height: 1;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #14213D;
  z-index: 9999;
  transform: translateX(-102vw);
  transition: transform 0.32s cubic-bezier(.6,0,.2,1);
  padding: 32px 24px 24px 24px;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FCA311;
  font-size: 2.3rem;
  align-self: flex-end;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 18px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 12px 0;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCA311;
  border-bottom: 2px solid #FCA311;
  outline: none;
}

@media (max-width: 1000px) {
  header nav ul {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  header nav {
    padding: 10px 0;
    gap: 18px;
  }
  header nav a img {
    height: 36px;
    margin-right: 6px;
  }
}

/* =====================
  HERO / MAIN SECTION
====================== */
.section, section {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 4px 28px rgba(20,33,61,.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
section h1, section h2 {
  margin-bottom: 22px;
  font-weight: 900;
}
@media (max-width: 768px){
  .section, section {
    margin-bottom: 36px;
    padding: 24px 4px;
    border-radius: 18px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =====================
  FLEXBOX CONTENT LAYOUTS
====================== */
.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) {
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* =====================
  ICON LISTS & UL/OL
====================== */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 600;
}
ul li img, ol li img {
  width: 32px;
  height: 32px;
  margin-right: 7px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  ul li img, ol li img {
    width: 24px;
    height: 24px;
  }
}

/* =====================
  TESTIMONIALS
====================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F9F9FA;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.04);
  padding: 28px 28px 20px 28px;
  min-width: 260px;
  max-width: 420px;
  margin-bottom: 20px;
  color: #14213D;
  font-size: 1.12rem;
  font-style: italic;
  transition: background 0.2s,box-shadow .24s;
}
.testimonial-card p {
  color: #14213D;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #FCA311;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1rem;
}
.testimonial-card:hover {
  background: #E5E5E5;
  box-shadow: 0 4px 20px #FCA31122;
}

/* ========================
  CTA SECTIONS
======================== */
.text-section a.button-primary {
  margin-left: 0;
  margin-top: 14px;
}

/* ========================
  FOOTER
======================== */
footer {
  background: #14213D;
  color: #fff;
  padding: 36px 0 18px 0;
  font-size: 1rem;
  width: 100%;
  position: relative;
  margin-top: 64px;
}
.footer-nav {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.footer-nav a {
  color: #FCA311;
  font-weight: 700;
  margin: 0 6px;
}
footer p {
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  footer {
    font-size: 0.97rem;
    padding: 24px 0 10px 0;
  }
}

/* =====================
  TABLES (Tarifs)
====================== */
table {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px #14213d0c, 0 1px 6px #FCA31108;
  margin: 18px 0 28px 0;
  background: #fff;
}
tbody tr {
  background: #FBFBFD;
}
tbody tr:nth-child(even) {
  background: #F5F7FA;
}
td {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
}

/* =====================
  CONTACT INFO ICON BLOCKS
====================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.contact-info img {
  width: 26px;
  height: 26px;
}

/* ========================
  COOKIE CONSENT BANNER
======================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #14213D;
  color: #fff;
  z-index: 7000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 20px 24px 34px;
  box-shadow: 0 -2px 16px #14213d22;
  font-size: 1.03rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.cookie-banner button {
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform .09s;
}
.cookie-banner .accept {
  background: #FCA311;
  color: #14213D;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffb21b;
  color: #14213D;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #233355;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FCA311;
  color: #14213D;
}
.cookie-banner .settings {
  background: #E5E5E5;
  color: #14213D;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FCA311;
  color: #14213D;
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 10px 18px 10px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 10px;
  }
}
/* Cookie modal styles */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,33,61,0.93);
  transition: opacity .2s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 34px 32px 28px 32px;
  max-width: 430px;
  width: 96vw;
  color: #14213D;
  box-shadow: 0 2px 24px rgba(20,33,61,.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #FCA311;
  letter-spacing: 0.5px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #FCA311;
  width: 19px; height: 19px;
}
.cookie-modal-content .essential {
  color: #bbb;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal-content .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #14213D;
  cursor: pointer;
  margin-top: -26px;
  margin-bottom: 10px;
  margin-right: -10px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-content button {
  padding: 9px 18px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  background: #14213D;
  color: #fff;
  cursor: pointer;
  transition: background 0.19s, color 0.11s;
}
.cookie-modal-content button.accept {
  background: #FCA311;
  color: #14213D;
}
.cookie-modal-content button.accept:hover, .cookie-modal-content button.accept:focus {
  background: #14213D;
  color: #fff;
}
.cookie-modal-content button.reject {
  background: #233355;
}
.cookie-modal-content button.reject:hover, .cookie-modal-content button.reject:focus {
  background: #FCA311;
  color: #14213D;
}

/* =====================
  BUTTONS && MICRO-INTERACTIONS
====================== */
button, .button-primary {
  transition: background 0.26s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, transform 0.11s;
}
button:focus-visible, .button-primary:focus-visible {
  outline: 3px solid #FCA311;
}

/* =====================
  ANIMATIONS
====================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .testimonial-card, .card, .cookie-banner {
  animation: fadeInUp 0.72s cubic-bezier(.4,0,.2,1) both;
}

/* =======================
  RESPONSIVE / MOBILE LAYOUTS
======================= */
@media (max-width: 800px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .card, .testimonial-card {
    padding: 19px 12px;
    min-width: 170px;
    max-width: 99vw;
  }
}

/* =======================
  UTILITIES
======================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.gap-24 { gap: 24px !important; }

/* =======================
  HIGH CONTRAST/BRIGHT ACCENTS
======================= */
::selection {
  background: #FCA311;
  color: #14213D;
}

/* =======================
  VISUAL BOLDNESS
======================= */
.button-primary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-content button {
  /* Ensures the UI always feels bold, clicky, and modern */
  box-shadow: 0 2px 8px #FCA31122, 0 0.5px 2px #14213D08;
}

/* =======================
  PAGE-SPECIFIC STYLES/EXTRAS
======================= */
.text-section {
  margin-left: 0;
  margin-right: 0;
}
.text-section h2 {
  margin-bottom: 14px;
}

@media (max-width: 500px) {
  .content-wrapper, .card-container, .container {
    padding: 0 0;
    gap: 10px;
  }
}
input, textarea {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  border-radius: 12px;
  border: 1.5px solid #E5E5E5;
  padding: 8px 12px;
  font-size: 1.03rem;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border: 1.5px solid #FCA311;
}

/* ==============
   PRINT SAFETY
   =============*/
@media print {
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
