* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #14202a;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e3e8ee;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #4b5b6a;
  background: #eef2f5;
  padding: 4px 8px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 32px 0 40px;
}

.hero-text,
.hero-media {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #0f7e6d;
  color: #ffffff;
  font-weight: 600;
}

.button-outline {
  background: transparent;
  border: 1px solid #0f7e6d;
  color: #0f7e6d;
}

.split-section {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.panel h2 {
  margin-top: 0;
}

.media-frame {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #dde3ea;
  min-height: 240px;
  display: flex;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: #f0f4f7;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card figure {
  margin: 0;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe6ee;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #0f7e6d;
}

.inline-cta {
  color: #0f7e6d;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  background: #0f7e6d;
  color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin: 40px 0;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd5df;
  font-size: 14px;
  background: #f9fbfc;
}

.form-field {
  flex: 1 1 240px;
}

.footer {
  padding: 32px 24px;
  background: #121a22;
  color: #d7dee6;
  margin-top: 40px;
}

.footer a {
  color: #d7dee6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin: 16px 0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d9e1ea;
  display: none;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.simple-header {
  padding: 40px 24px 16px;
  background: #ffffff;
  border-radius: 18px;
  margin: 24px 0;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
}
