* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: #1a1a1a;
  background: #fff;
}

body.subpage {
  display: flex;
  flex-direction: column;
}

.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}

.subpage {
  background: #e6ebf1;
  padding-top: 100px;
  min-height: 100vh;
}

.subpage .header-flex {
  background: #123a6f;
  backdrop-filter: none;
}

.documents-section {
  background: #e6ebf1;
  flex: 1;
}

.documents-section .card a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.documents-section .card a:hover {
  color: inherit;
}

/* HEADER */
.header {
  background: transparent;
  color: white;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled .header-flex {
  background: #123a6f; /* ← rovnaká ako footer */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: rgba(18, 58, 111, 0.65);
  padding: 28px 28px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.header .container {
  width: 100%;
  max-width: 1500px; /* 🔥 zväčšené */
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo img {
  height: 70px; /* väčšie logo */
  background: white;
  padding: 6px;
  border-radius: 8px;
}

.highlight {
  color: #ff8c00 !important;
  font-weight: bold;
}

/* NAVIGÁCIA */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
}

.nav a.active {
  font-weight: 600;
}

.nav a:hover {
  color: #ff8c00
}

/* LANGUAGE DROPDOWN */
.language-dropdown {
  position: relative;
  margin-left: 25px;
  cursor: pointer;
}

.flag {
  width: 18px;
  height: 12px;
  margin-right: 8px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: -2px;
}

.selected-lang {
  font-weight: 600;
  color: white;
}

.lang-options {
  display: none;
  position: absolute;
  top: 35px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  min-width: 200px;
  overflow: hidden;
  z-index: 1000;
}

.lang-options div {
  padding: 10px 15px;
  color: #123a6f;
  transition: 0.2s;
}

.lang-options div:hover {
  background: #f4f6f9;
}

.language-dropdown.active .lang-options {
  display: block;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  background-image: url("truck.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  color: white;
  max-width: 720px;
  margin-left: 8vw;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
}

/* TITLES */
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  white-space: nowrap;
}

.hero-benefits {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.hero-benefits li {
  font-size: 22px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
  color: white;
  transition: transform 0.2s ease;
  text-shadow: 0 4px 10px rgba(0,0,0,0.9);
}

.hero-benefits li:hover {
  transform: translateX(5px);
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -2px;
  color: #ff8c00;
  font-weight: 900;
  font-size: 22px;
  text-shadow: 0 0 1px #ff8c00;
}

.hero-result {
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-left: 28px !important;
  margin-top: 10px !important;
  margin-bottom: 18px !important;
  color: #ff8c00 !important;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4) !important;
}

.hero p {
  font-size: 22px;
  margin: 22px 0;
  line-height: 1.6;
}

/* TEXT SHADOW */
.hero h1,
.hero h2,
.hero p {
  text-shadow: 0 12px 40px rgba(0,0,0,0.85);
}

/* BUTTONS */
.btn-primary {
  background: #ff8c00;
  color: white;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  background: rgba(18, 58, 111, 0.35);
  padding: 10px 20px;
  font-size: 17px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* SECTIONS */
.section {
  padding: 80px 0;
  scroll-margin-top: 120px; /* uprav podľa výšky headeru */
}

.section.gray {
  background: #f4f6f9;
}

h2 {
  margin-bottom: 30px;
  font-size: 34px;
  color: #123a6f;
  text-align: center;
}

/* ABOUT */
#about {
  background: linear-gradient(135deg, #dfe8f2 0%, #f7f9fc 48%, #ffffff 100%);
}

#services {
  background: #f4f6f9;
}

#about .container {
  padding: 40px 0;
}

.about-text {
  border-left: 4px solid #ff8c00;
  padding-left: 28px;
}

/* O NÁS – nadpis výnimka */
#about h2 {
  text-align: left;
}

/* ABOUT layout s fotkou */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px; /* text + fotka */
  gap: 48px;
  align-items: start; /* hore, nie v strede */
}

/* zúženie textu – aby riadky neboli dlhé */
.about-text {
  max-width: 680px;
}

/* typografia len pre O nás (nie pre celý web) */
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.founder-card {
  width: 220px;
}

.about-photo img {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* FOUNDER CAPTION */
.founder-caption {
  margin-top: 14px;
  text-align: center;
  color: #123a6f;
  width: 100%;
}

.founder-caption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.founder-caption span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: #555;
}

/* PREČO LEONEX */
.why-section h3 {
  margin-top: 28px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #123a6f;
}

.why-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.why-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 18px;
}

.why-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ff8c00;
  font-size: 16px;
}

.why-list strong {
  color: #123a6f;
  font-weight: 700;
}

/* SERVICES */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* presne 3 stĺpce */
  gap: 25px;
}

.card {
  position: relative; /* ← PRIDAJ */
  overflow: hidden;   /* ← PRIDAJ */

  background: white;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
}

.card-title {
  display: block;
  text-align: center;
}

.card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;

  font-weight: normal;
  font-size: 15px;
  background: rgba(255, 140, 0, 0.95);
  color: white;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.card:hover .card-hover {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .card-title {
  opacity: 0;
}

/* PROCESS ROADMAP */
#process {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,140,0,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  overflow: hidden;
}

.process-road {
  position: relative;
  height: 320px;
  margin-top: 35px;
}

.road-svg {
  position: absolute;
  inset: 20px 0 0 0;
  width: 100%;
  height: 260px;
  overflow: visible;
}

.road-shadow,
.road-line {
  fill: none;
  stroke-linecap: round;
}

.road-shadow {
  stroke: rgba(18,58,111,0.14);
  stroke-width: 34;
}

.road-line {
  stroke: #123a6f;
  stroke-width: 10;
  stroke-dasharray: none;
  opacity: 0.9;
}

.road-dot {
  fill: #ff8c00;
  filter: drop-shadow(0 0 12px rgba(255,140,0,0.75));
}

.road-step {
  position: absolute;
  z-index: 2;
  background: white;
  color: #123a6f;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(18,58,111,0.16);
  border: 2px solid rgba(255,140,0,0.25);
  white-space: nowrap;
  transition: 0.3s ease;
  animation: stepPulse 5s ease-in-out infinite;
}

.road-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(18,58,111,0.22);
  border-color: #ff8c00;
}

.step-1 { left: 3%; top: 125px; animation-delay: 0s; }
.step-2 { left: 22%; top: 35px; animation-delay: 1s; }
.step-3 { left: 42%; top: 130px; animation-delay: 2s; }
.step-4 { left: 65%; top: 220px; animation-delay: 3.3s; }
.step-5 { right: 2%; top: 105px; animation-delay: 4.3s; }

@keyframes roadMove {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes stepPulse {
  0%, 14%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 34px rgba(18,58,111,0.16);
    border-color: rgba(255,140,0,0.25);
  }

  7% {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 22px 50px rgba(255,140,0,0.28);
    border-color: #ff8c00;
  }
}

/* CONTACT */
#contact {
  position: relative;
  background: url("images/services-logistics-background.jpg") center/cover no-repeat;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95); /* uprav podľa potreby */
  z-index: 0;
}

#contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* klikateľné kontakty */
.contact-grid a {
  color: inherit;
  text-decoration: none;
}

.contact-grid a:hover {
  color: #123a6f;
  text-decoration: underline;
}

/* mapa */
.contact-grid iframe {
  margin-top: 15px;
  border-radius: 8px;
}

/* FORM */
.form input,
.form textarea {
  width: 100%;
  padding: 11px;
  margin: 8px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.form textarea {
  height: 110px;
}

/* text nad formulárom */
.form-intro {
  margin: 10px 0 18px;
  line-height: 1.6;
  color: #444;
  font-size: 16px;
}

/* text pod tlačidlom */
.form-note {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

/* CARRIERS FORM */
.lead {
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 18px;
}

.carriers-section {
  background: #e6ebf1;
  padding: 80px 0;
  flex: 1;
}

.carriers-form h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  color: #123a6f;
}

.carriers-form .btn-primary {
  font-size: 18px;
  padding: 13px 24px;
  border-radius: 6px;
}

.documents-section h2 {
  transform: translateY(-30px);
}

.carriers-section h2 {
  transform: translateY(-30px);
}

.form-table {
  display: grid;
  gap: 12px;
}

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

.form-row label {
  font-weight: 600;
  color: #1a1a1a;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white;
}

/* Súhlasy – checkbox úplne naľavo */
.consents-table {
  margin-top: 18px;
  margin-bottom: 30px;   /* ← toto pridaj */
  padding-top: 12px;
  border-top: 1px solid #e6e6e6;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-row input {
  margin-top: 3px;
}

.consent-row span {
  line-height: 1.4;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 8px 14px;
}

.checks label {
  font-weight: 500;
}

.two-inputs {
  display: flex;
  gap: 14px;
}

.two-inputs input:first-child {
  flex: 0 0 140px;   /* šírka PSČ */
}

.two-inputs input:last-child {
  flex: 1;          /* Mesto zaberie zvyšok */
}

/* FOOTER */
.footer {
  background: #123a6f;
  color: #ffffff;
  padding: 22px 20px 10px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #ff8c00;
}

/* SPODNÝ PÁS */
.footer-bottom {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* PROFESSIONAL INTERACTIONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  background: #ff9f1a;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-secondary:hover {
  background: white;
  color: #123a6f;
  transform: translateY(-2px);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: #123a6f;
  box-shadow: 0 0 0 3px rgba(18,58,111,0.12);
}

/* ANIMÁCIE */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease-out forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {

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

  .grid {
    grid-template-columns: 1fr;   /* služby pod seba na mobile */
  }

  .nav {
    display: none;
  }
}

/* MOBIL */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo img {
    margin: auto;
  }

  .partners-block {
    grid-template-columns: 1fr;
  }

  .partner-box {
    min-height: 200px;
    padding: 26px 22px;
  }

  .partner-box h4 {
    font-size: 24px;
  }

  .partner-box p {
    font-size: 16px;
    max-width: 100%;
  }
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .header {
    padding: 14px 18px;
  }

  .header-flex {
    position: relative;
  }

  .logo img {
    height: 52px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    background: #123a6f;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    margin: 0;
    padding: 13px 10px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .nav a:last-of-type {
    border-bottom: 0;
  }

  .language-dropdown {
    margin-left: 0;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .lang-options {
    position: static;
    margin-top: 10px;
    min-width: 100%;
  }
}

/* HERO MOBILE */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    align-items: center;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 0 22px;
    text-align: left;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 14px;
    white-space: normal;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.5;
    margin: 16px 0 22px;
  }

  .hero-result {
    font-size: 27px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    max-width: 95% !important;
    margin-left: 28px !important;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .btn-secondary:hover,
  .btn-secondary:focus,
  .btn-secondary:active {
    border: 2px solid white;
    color: white;
    background: rgba(18, 58, 111, 0.35);
    transform: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .hero-benefits li::before {
    top: 1px;   /* 🔥 posunie nižšie len na mobile */
  }
}

/* ABOUT MOBILE IMPROVEMENTS */
@media (max-width: 900px) {
  #about h2 {
    text-align: center;
  }

  .about-grid {
    gap: 28px;
  }

  .about-text {
    max-width: 100%;
    text-align: left;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-photo {
    text-align: center;
  }

  .about-photo img {
    max-width: 240px;
  }

  .founder-card {
    margin-left: auto;
    margin-right: auto;
  }
}

/* SERVICES MOBILE */
@media (max-width: 900px) {
  .card {
    padding: 22px;
    cursor: pointer;
  }

  .card-title {
    display: block;
    margin-bottom: 0;
    color: #123a6f;
    opacity: 1;
  }

  .card-hover {
    display: none;
  }

  .card.open .card-title {
    display: none;
  }

  .card.open .card-hover {
    display: block;
    position: static;
    opacity: 1;
    transform: none;
    padding: 0;
    background: transparent;
    color: #ff8c00;
    font-weight: 600;
    border-radius: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .card:hover {
    transform: none;
  }

  .card:hover .card-title {
    opacity: 1;
  }

  .card:hover .card-hover {
    display: none;
  }

  .card.open:hover .card-hover {
    display: block;
  }
}

/* BACKGROUND MAPA LEN PRE PREČO LEONEX */
#why {
  background:
    linear-gradient(rgba(244,246,249,0.93), rgba(244,246,249,0.87)),
    url("images/europe-map.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  #why {
    background:
      linear-gradient(rgba(244,246,249,0.90), rgba(244,246,249,0.88)),
      url("images/europe-map.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
}

/* PROCESS MOBILE – NOVÁ VERZIA */
@media (max-width: 900px) {

  .process-road {
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* schováme cestu (SVG) */
  .road-svg {
    display: none;
  }

  /* kroky ako karty pod sebou */
  .road-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;

    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
  }

  /* spojovacia čiara medzi krokmi */
  .road-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    width: 4px;
    height: 18px;
    background: #ff8c00;
    transform: translateX(-50%);
  }

  /* prvý krok bez čiary */
  .road-step:first-of-type::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-col h3 {
    margin-bottom: 10px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* CARRIERS RESPONSIVE */
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

/* MOBIL */
@media (max-width: 900px) {
  .two-inputs {
    flex-direction: column;
  }

  .two-inputs input:first-child {
    flex: none;
  }

  .two-inputs input {
    height: auto;
  }
}

/* HEADER DESKTOP HEIGHT */
@media (min-width: 901px) {
  .header-flex {
    min-height: 90px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* LEGAL STRÁNKY */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 10px;   /* 🔥 menej paddingu = viac doľava */
  padding-right: 20px;
  line-height: 1.7;
  font-size: 16px;
  text-align: left;
}

.legal-content h1 {
  text-align: center;    /* ✅ len hlavný nadpis na stred */
  margin-bottom: 30px;
  color: #123a6f;
}

.legal-content h2 {
  text-align: left;      /* ✅ zarovnané s textom */
  font-size: 22px;      /* 🔥 menšie */
  margin-top: 28px;
  margin-bottom: 10px;
  color: #123a6f;
}

.legal-content h3 {
  text-align: left;      /* ✅ zarovnané s textom */
  margin-top: 30px;
  margin-bottom: 10px;
  color: #123a6f;
}

/* Súhlasy – checkbox úplne naľavo */
.consent-row a {
  color: #123a6f;
  font-weight: 600;
  text-decoration: underline;
}

.consent-row a:hover {
  color: #ff8c00;
}
