:root {
  --primary: #0B1220;
  --secondary: #1F6FEB;
  --accent: #22C55E;
  --background: #F6F8FC;
  --text: #0F172A;
  --muted: #94A3B8;
  --white: #ffffff;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

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

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  color: var(--white);
  display: none;
  flex-direction: column;
  padding: 40px;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-menu a {
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
}

.close-menu {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
}

.nav-toggle:checked ~ .mobile-menu {
  display: flex;
}

.hero {
  padding: 80px 0;
  background: var(--white);
}

.small-hero {
  padding: 60px 0;
}

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

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--primary);
}

.hero-content p {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
}

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

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.section {
  padding: 70px 0;
}

.alt-bg {
  background: #edf2ff;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

.two-col {
  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(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

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

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 50px 0 20px;
}

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

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

.footer-nav ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
}

.cookie-banner {
  background: #1b2a4a;
  color: var(--white);
  padding: 16px;
  margin-top: 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.responsive-img {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .section {
    padding: 50px 0;
  }
}