* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Arial", sans-serif;
  color: #0B1F3B;
  background: #F7FAFF;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  background: #0B1F3B;
  color: #F7FAFF;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  max-height: 50px;
}
.logo-footer {
  max-height: 100px;
}
.logo-link img {
  display: block;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.nav a {
  color: #F7FAFF;
  text-decoration: none;
  font-weight: 600;
}
.nav-toggle {
  display: none;
}
.burger {
  display: none;
  color: #F7FAFF;
  font-size: 28px;
  cursor: pointer;
}
.nav-close {
  display: none;
  font-size: 36px;
  color: #F7FAFF;
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
}
.hero {
  padding: 60px 0;
  background: #0B1F3B;
  color: #F7FAFF;
}
.hero--small {
  padding: 40px 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.hero__media img {
  width: 100%;
  border-radius: 12px;
}
.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.section {
  padding: 60px 0;
  background: #F7FAFF;
}
.section--light {
  background: #FFFFFF;
}
.section h2 {
  margin-bottom: 20px;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #FFFFFF;
  border: 1px solid #E1E8F0;
  padding: 24px;
  border-radius: 12px;
}
.section--light .card {
  background: #F7FAFF;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}
.list {
  list-style: disc;
  padding-left: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: #2F6BFF;
  color: #FFFFFF;
}
.form {
  background: #FFFFFF;
  border: 1px solid #E1E8F0;
  padding: 24px;
  border-radius: 12px;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.form input, .form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #C8D2DC;
  border-radius: 6px;
  font-size: 16px;
}
.faq {
  display: grid;
  gap: 16px;
}
.footer {
  background: #0B1F3B;
  color: #F7FAFF;
  padding: 40px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer a {
  color: #F7FAFF;
  text-decoration: none;
}
.footer ul {
  list-style: none;
}
.keywords {
  margin-top: 20px;
  color: #5B6B7A;
}
.cookie-banner {
  background: #0B1F3B;
  color: #F7FAFF;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  display: none;
  z-index: 2000;
}
.cookie-banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .hero__grid, .split, .grid--2, .grid--3, .footer__grid {
    grid-template-columns: 1fr;
  }
  .form__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 60px;
  }
  .nav {
    position: fixed;
    background: #0B1F3B;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .nav-close {
    display: block;
  }
  .nav-toggle:checked + .burger + .nav {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .hero__highlights {
    grid-template-columns: 1fr;
  }
}