* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1c4d6b;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #121921;
  color: #f0f1f3;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  opacity: 0.85;
  background-color: #1f2a35;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f0f1f3;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-note {
  font-size: 14px;
  opacity: 0.8;
}

.content {
  flex: 1;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 48px;
  color: #f8f8f8;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 22, 0.55);
  border-radius: 24px;
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f2c94c;
  color: #1b1b1b;
  border: none;
  padding: 14px 22px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background-color: #e6ecf0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h2 {
  font-size: 28px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.img-frame {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  flex: 1 1 240px;
}

.img-frame.small {
  height: 180px;
}

.tone-1 {
  background-color: #d7dde2;
}

.tone-2 {
  background-color: #cbd3db;
}

.tone-3 {
  background-color: #dfe6ec;
}

.tone-4 {
  background-color: #e3e8ed;
}

.tone-5 {
  background-color: #d3dadf;
}

.tone-6 {
  background-color: #dfe2e6;
}

.tone-7 {
  background-color: #d8dee4;
}

.highlight {
  background-color: #fff5dd;
  padding: 24px;
  border-radius: 18px;
}

.form-section {
  background-color: #0f1f2c;
  color: #f3f6f8;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.form-section button {
  align-self: flex-start;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #55616c;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta span {
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #121921;
  color: #f5f5f5;
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  background-color: #f2c94c;
  color: #1b1b1b;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: #e6ecf0;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-grid div {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
