* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1f2428;
  --muted: #5b636a;
  --accent: #2c6e7f;
  --accent-2: #f1b45c;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(18, 24, 28, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e3e7ea;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links a:hover {
  background: #e9f1f4;
}

.ad-label {
  font-size: 12px;
  color: #8b3a3a;
  background: #fbe9e9;
  padding: 6px 10px;
  border-radius: 12px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 0;
}

.hero {
  padding: 40px 0 30px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn.secondary:hover {
  transform: translateY(-1px);
}

.section {
  margin: 60px 0;
}

.section-title {
  font-size: 26px;
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.image-frame {
  background: #e0e6ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 22px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 32, 0.6);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.highlight-panel {
  background: linear-gradient(130deg, #f8efe2, #e7f0f2);
  padding: 40px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.testimonial {
  background: #f3efe9;
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6dbe0;
  font-size: 14px;
}

.form-message {
  font-size: 13px;
  color: #8b3a3a;
}

.footer {
  background: #1f2428;
  color: #ffffff;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #1f2428;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.sticky-cta:hover {
  filter: brightness(1.05);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  padding: 30px 0 10px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
