:root {
  --blue: #06266f;
  --blue-dark: #001d5c;
  --blue-bright: #0043d4;
  --orange: #db6500;
  --text: #071f57;
  --muted: #4b5570;
  --white: #ffffff;
  --soft: #f5f6fa;
  --shadow: 0 18px 42px rgba(2, 15, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  height: 95px;
  justify-content: space-between;
  left: 50%;
  max-width: 980px;
  padding: 0 16px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: min(100% - 32px, 980px);
  z-index: 20;
}

.site-header::after {
  background: rgba(255, 255, 255, 0.78);
  bottom: 0;
  content: "";
  height: 1px;
  left: 16px;
  position: absolute;
  right: 16px;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: 24px;
  width: auto;
}

.brand-name {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-left: 14px;
  padding-left: 14px;
  white-space: nowrap;
}

.brand-name em {
  color: var(--orange);
  font-style: normal;
}

.brand-word {
  display: block;
  white-space: nowrap;
}

.brand-name-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.linkedin {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  display: none;
}

.lang {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 7px;
  display: none;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 46px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px 0;
}

.hero {
  background: var(--blue-dark) url("assets/hero.jpg") center / cover no-repeat;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-video,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    110deg,
    rgba(0, 20, 68, 0.88) 0%,
    rgba(3, 28, 86, 0.72) 55%,
    rgba(5, 32, 96, 0.45) 100%
  );
}

.hero-inner {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 980px;
  min-height: 100vh;
  padding: 130px 16px 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 820px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 36px;
  max-width: 740px;
  opacity: 0.9;
}

.pill-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.03em;
  min-height: 54px;
  padding: 14px 36px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.pill-button.light {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 27, 82, 0.12);
  color: var(--blue-dark);
}

.pill-button.light:hover {
  box-shadow: 0 6px 20px rgba(0, 27, 82, 0.18);
  transform: translateY(-2px);
}

.pill-button.orange {
  background: var(--orange);
  box-shadow: 0 4px 18px rgba(210, 85, 15, 0.38);
  color: var(--white);
}

.pill-button.orange:hover {
  box-shadow: 0 8px 28px rgba(210, 85, 15, 0.5);
  transform: translateY(-2px);
}

.pill-button.dark {
  background: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(0, 27, 82, 0.22);
  color: var(--white);
}

.pill-button.dark:hover {
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 27, 82, 0.3);
  transform: translateY(-2px);
}

.pill-button.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.pill-button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.hero-ctas {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.services {
  background: var(--white);
  margin-top: 0;
  padding: 64px 16px 88px;
  position: relative;
  z-index: 5;
}

.services > h2 {
  color: var(--blue-dark);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  margin: 0 auto 44px;
  text-align: center;
}

.tabs {
  display: flex;
  margin: 0 auto;
  max-width: 764px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.tab {
  background: var(--white);
  border: 0;
  border-right: 1px solid rgba(6, 38, 111, 0.1);
  color: var(--muted);
  cursor: pointer;
  flex: 1 1 0;
  font: 600 18px/1.2 inherit;
  min-height: 64px;
  padding: 20px 28px;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab:last-child {
  border-right: 0;
}

.tab:not(.active):hover {
  background: #f0f2f8;
  color: var(--blue-dark);
}

.tab.active {
  background: var(--soft);
  color: var(--blue-dark);
  font-weight: 700;
}

.service-panel {
  background: var(--soft);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 30px;
  grid-template-columns: 298px 1fr;
  margin: 0 auto;
  max-width: 980px;
  min-height: 480px;
  padding: 20px;
}

.service-panel[hidden] {
  display: none;
}

.panel-image {
  border-radius: 8px;
  height: 493px;
  object-fit: cover;
  width: 298px;
}

.panel-copy {
  padding: 10px 0 12px;
}

.panel-copy h3 {
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  line-height: 0.96;
  margin: 0 0 22px;
}

.panel-copy h3 span,
.about h2 span {
  color: var(--orange);
}

.panel-copy p {
  color: #111;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.course-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(126px, 1fr));
  margin: 24px auto 20px;
  max-width: 500px;
}

.course-grid.compact {
  grid-template-columns: minmax(126px, 170px);
  justify-content: center;
}

.course-card {
  align-items: center;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 7px 20px rgba(2, 15, 47, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  padding: 16px 14px 14px;
  text-align: center;
}

.course-card img {
  border-radius: 50%;
  height: 80px;
  object-fit: cover;
  width: 80px;
}

.course-card strong {
  color: var(--blue-dark);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.course-card strong span {
  color: var(--orange);
}

.course-card em {
  color: var(--blue-dark);
  display: block;
  font-size: 11px;
  font-style: normal;
  margin-top: -10px;
}

.course-card small {
  background: var(--blue-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-top: auto;
  min-width: 110px;
  padding: 10px 15px;
  text-transform: uppercase;
}

.about {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 980px;
  padding: 88px 16px;
}

.about h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 20px;
  white-space: nowrap;
}

.finder h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}

.about p,
.finder p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.about img {
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(2, 15, 47, 0.14);
  height: auto;
  max-height: 440px;
  object-fit: cover;
  width: 100%;
}

.about-proof {
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.about-proof li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.about-proof li::before {
  color: var(--orange);
  content: "→";
  left: 0;
  position: absolute;
}

.text-link {
  color: var(--orange);
  font-weight: 700;
}

.finder {
  background: linear-gradient(135deg, #071f57, #0041c4);
  color: var(--white);
  margin: 0 0 44px;
  padding: 96px 16px;
}

.finder-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 980px;
}

.finder .contact-form button[type="submit"] {
  width: 100%;
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 400;
  gap: 5px;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #d6dbea;
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  min-height: 42px;
  padding: 9px 11px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.testimonial {
  background: var(--soft);
  display: flex;
  min-height: 326px;
  padding: 80px 16px;
  text-align: center;
}

.testimonial-inner {
  min-height: 326px;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  width: 100%;
}

.testimonial-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 326px;
  padding: 30px 96px 78px;
  transition: opacity 260ms ease, transform 260ms ease;
}

.testimonial-card.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial blockquote {
  color: var(--blue-dark);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto 20px;
  max-width: 765px;
}

.testimonial figcaption {
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.testimonial-arrow {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--blue-dark);
  cursor: pointer;
  display: inline-flex;
  font: 300 40px/1 Georgia, serif;
  height: 41px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
}

.testimonial-arrow:first-child {
  left: 45px;
}

.testimonial-arrow:last-child {
  right: 45px;
}

.testimonial-dots {
  align-items: center;
  bottom: 49px;
  display: flex;
  gap: 11px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.testimonial-dots button {
  appearance: none;
  background: #a5adc2;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  padding: 0;
  width: 7px;
}

.testimonial-dots .is-active {
  background: var(--blue-dark);
  height: 10px;
  width: 10px;
}

.clients {
  background: #f4f6fa;
  padding: 88px 16px;
}

.clients-inner {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.clients-inner::before {
  display: none;
}

.clients h2 {
  color: #8a9bb8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1;
  margin: 0 0 52px;
  text-transform: uppercase;
}

.clients-sub {
  color: #677;
  font-size: 14px;
  line-height: 1.55;
  margin: 36px auto 0;
  max-width: 500px;
}

.client-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 56px;
  justify-content: center;
}

.client-logos img {
  filter: grayscale(100%) opacity(0.5);
  height: 64px;
  object-fit: contain;
  transition: filter 0.25s ease;
  width: auto;
}

.client-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

.client-logos img:nth-child(3) {
  height: 52px;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(0, 22, 68, 0.97) 0%, rgba(4, 38, 110, 0.94) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 48px max(24px, calc((100vw - 980px) / 2)) 36px;
}

.site-footer-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.site-footer .footer-brand {
  flex-shrink: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-end;
  letter-spacing: 0.12em;
}

.footer-nav-break {
  flex-basis: 100%;
  height: 0;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 0.18s;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer-copy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.page-hero {
  min-height: 100vh;
}

.page-hero .hero-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 82px;
  padding-top: 132px;
}

.page-hero .hero-inner p:not(.breadcrumb) {
  font-size: 30px;
  max-width: 780px;
  opacity: 1;
}

.page-hero h1 {
  max-width: 780px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.course-page {
  background: var(--white);
}

.course-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 310px;
  margin: 0 auto 54px;
  max-width: 980px;
  padding: 48px 16px 0;
  position: relative;
  z-index: 6;
}

.course-main,
.course-side,
.schedule-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-main {
  padding: 38px;
}

.course-main h2 {
  color: var(--blue-dark);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 22px;
}

.course-main h2 span {
  color: var(--orange);
}

.course-main p {
  color: #111;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.course-section {
  border-top: 1px solid #e1e5f0;
  margin-top: 26px;
  padding-top: 24px;
}

.course-section h3 {
  color: var(--blue-dark);
  font-size: 22px;
  margin: 0 0 12px;
}

.course-section ol,
.course-section ul {
  color: #1d2b53;
  line-height: 1.65;
  margin: 0;
  padding-left: 22px;
}

.course-side {
  align-self: start;
  overflow: hidden;
  position: sticky;
  top: 24px;
}

.course-side img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.course-side-content {
  padding: 22px;
}

.course-side h2 {
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 14px;
}

.price {
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.meta-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.meta-list li {
  background: var(--soft);
  border-radius: 6px;
  padding: 10px 12px;
}

.related-courses {
  margin: 0 auto 58px;
  max-width: 980px;
  padding: 0 16px;
}

.related-courses h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  margin: 0 0 22px;
}

.related-courses .course-grid {
  max-width: none;
}

.contact-page {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto 60px;
  max-width: 980px;
  padding: 48px 16px 0;
  position: relative;
  z-index: 6;
}

.schedule-card {
  padding: 28px;
}

.schedule-grid {
  border: 1px solid #dbe1ee;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
}

.schedule-grid span {
  border-bottom: 1px solid #dbe1ee;
  border-right: 1px solid #dbe1ee;
  min-height: 54px;
  padding: 10px 8px;
  text-align: center;
}

.schedule-grid span:nth-child(7n) {
  border-right: 0;
}

.time-slots {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.time-slots button {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  padding: 11px 16px;
}

@media (max-width: 900px) {
  .course-layout,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .course-side {
    position: static;
  }
}

@media (max-width: 620px) {
  .course-main,
  .schedule-card {
    padding: 24px 18px;
  }

  .schedule-grid {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }
.menu-toggle {
    display: block;
  }

  .nav-links {
    background: rgba(0, 28, 88, 0.96);
    border-radius: 0 0 8px 8px;
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 16px;
    padding: 22px;
    position: absolute;
    right: 16px;
    top: 82px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner {
    padding-top: 106px;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs {
    flex-direction: column;
    border-radius: 8px 8px 0 0;
  }

  .tab {
    border-radius: 6px;
  }

  .service-panel,
  .about,
  .finder-inner,
  .clients-inner {
    grid-template-columns: 1fr;
  }

  .clients-inner {
    text-align: center;
  }

  .panel-image {
    height: min(520px, 72vw);
    width: 100%;
  }

  .course-grid {
    max-width: none;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: 100%;
  }
.hero {
    min-height: 670px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .services {
    margin-top: 0;
  }

  .service-panel {
    padding: 14px;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-inner {
    min-height: 340px;
  }

  .testimonial-card {
    min-height: 340px;
    padding: 28px 34px 78px;
  }

  .testimonial blockquote {
    font-size: 28px;
  }

  .testimonial-arrow {
    font-size: 32px;
    width: 28px;
  }

  .testimonial-arrow:first-child {
    left: 0;
  }

  .testimonial-arrow:last-child {
    right: 0;
  }

  .client-logos {
    gap: 28px 40px;
  }

  .finder {
    padding: 56px 18px;
  }

}

/* Legal pages */
.legal-page .site-header {
  background: var(--blue-dark);
  left: 0;
  max-width: 100%;
  position: relative;
  transform: none;
  width: 100%;
  padding: 0 calc(50% - 474px);
}

.legal-page .site-header::after {
  display: none;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  color: #1c1c1c;
  line-height: 1.65;
}
.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
}
.legal-content p,
.legal-content ul {
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.95rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid #e2e2e2;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: #f6f6f6;
}
.legal-update {
  margin-top: 40px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.section-eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.course-cta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

/* RGPD consent in contact form */
.consent {
  align-items: flex-start;
  display: flex !important;
  flex-direction: row !important;
  font-size: 0.78rem;
  font-weight: 400;
  gap: 8px;
  line-height: 1.45;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #c0c8d8;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  height: 14px !important;
  min-height: 0 !important;
  margin-top: 2px;
  position: relative;
  width: 14px !important;
}
.consent input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.consent a {
  color: inherit;
  text-decoration: underline;
}
