* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111419;
  color: #f9f7f3;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.ad-label {
  font-size: 13px;
  background: #2a2f3a;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  color: #f9f7f3;
  text-decoration: none;
  font-size: 15px;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 14px;
  background: #f7c948;
  color: #1b1b1b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 48px 96px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 18px;
}

.hero-card {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card div {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  min-width: 170px;
  flex: 1;
}

.hero-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe3ea;
  min-height: 360px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-text h2 {
  margin: 0;
  font-size: 28px;
}

.section-text p {
  margin: 0;
}

.section-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e6ec;
  min-height: 280px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.accent {
  background: #1f2937;
  color: #f9f7f3;
}

.panel.accent a {
  color: #f7c948;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
  background: #e7ebf1;
  width: 100%;
  height: 150px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #111419;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.btn.light {
  background: #f7c948;
  color: #1b1b1b;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd5df;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #1f2937;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.split-block {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.split-item {
  flex: 1 1 220px;
  background: #f0f2f6;
  padding: 16px;
  border-radius: 14px;
}

.bg-insight {
  background-image: url("https://images.pexels.com/photos/23496933/pexels-photo-23496933.jpeg");
  background-size: cover;
  background-position: center;
  color: #f9f7f3;
  border-radius: 20px;
  padding: 28px;
}

.bg-insight .panel {
  background: rgba(17, 20, 25, 0.85);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #f7c948;
  color: #1b1b1b;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.footer {
  background: #111419;
  color: #f9f7f3;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7c948;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  background: #111419;
  color: #ffffff;
}

.cookie-actions .secondary {
  background: #cbd5e1;
  color: #111419;
}

.legal-hero {
  display: flex;
  gap: 24px;
  align-items: center;
}

.legal-hero img {
  border-radius: 16px;
  width: 320px;
  height: 220px;
  background: #e2e6ec;
}

.contact-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  flex: 1;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  main {
    padding: 32px 24px 96px;
  }

  .hero,
  .section,
  .legal-hero,
  .contact-block {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
