* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #0F172A;
  background: #F6F9FC;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-img-footer {
  height: 100px;
  width: auto;
}

.nav-toggle {
  display: none;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #0B2E4A;
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0B2E4A;
  color: #FFFFFF;
  transform: translateX(100%);
  padding: 32px;
}

.nav-toggle:checked ~ .nav-overlay {
  transform: translateX(0);
}

.nav-top {
  display: flex;
  justify-content: flex-end;
}

.close {
  font-size: 32px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-links a {
  color: #FFFFFF;
  font-size: 20px;
}

.nav-contact {
  margin-top: 40px;
  color: #E2E8F0;
}

.hero {
  background: linear-gradient(135deg, #0B2E4A 0%, #2F80ED 100%);
  color: #FFFFFF;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #E2E8F0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-highlight {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-primary {
  background: #00C2A8;
  color: #0B2E4A;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #FFFFFF;
  color: #0B2E4A;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
  background: #FFFFFF;
}

.section.alt-bg {
  background: #F6F9FC;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #0B2E4A;
}

.section p {
  margin-bottom: 16px;
  color: #0F172A;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-bottom: 12px;
  color: #0B2E4A;
}

.checklist {
  list-style: none;
  margin-top: 12px;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00C2A8;
  font-weight: bold;
}

.note {
  margin-top: 24px;
  background: #FFFFFF;
  padding: 16px;
  border-left: 4px solid #FFD166;
}

.faq {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
}

.steps {
  padding-left: 20px;
}

.steps li {
  margin-bottom: 12px;
}

.contact-section .contact-details {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.form {
  display: grid;
  gap: 12px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.form input,
.form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #CBD5F5;
  font-size: 16px;
}

.site-footer {
  background: #0B2E4A;
  color: #FFFFFF;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: #FFD166;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: #FFFFFF;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0B2E4A;
  color: #FFFFFF;
  padding: 16px;
  display: none;
  z-index: 200;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.cookie-content a {
  color: #FFD166;
}

@media (min-width: 900px) {
  .burger,
  .close {
    display: none;
  }

  .nav-overlay {
    position: static;
    transform: none;
    background: transparent;
    color: #0B2E4A;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .nav-links {
    flex-direction: row;
    margin: 0;
  }

  .nav-links a {
    color: #0B2E4A;
    font-size: 16px;
    font-weight: 600;
  }

  .nav-contact {
    margin-top: 0;
    color: #64748B;
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

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

  .hero-actions {
    flex-direction: column;
  }
}