:root {
  --bg: #f6f4f1;
  --ink: #1f2528;
  --muted: #5b646a;
  --accent: #0f4c5c;
  --accent-soft: #d7e2e6;
  --highlight: #f2d7b6;
  --card: #ffffff;
  --line: #e4e0da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #11181b;
  color: #f5f5f5;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #233238;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #f5f5f5;
  font-size: 14px;
}

.sidebar-cta {
  margin-top: auto;
  background: #f2d7b6;
  color: #1f2528;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}

.sidebar-cta a {
  color: #1f2528;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero-copy {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 34px;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-media {
  flex: 1;
  background: #1f2528;
}

.media-frame {
  background: #c5cdd2;
  width: 100%;
  height: 100%;
  display: flex;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tall {
  min-height: 260px;
}

.media-wide {
  min-height: 240px;
  width: 100%;
}

.media-card {
  height: 140px;
}

.media-form {
  min-height: 260px;
}

.media-square {
  width: 140px;
  height: 140px;
}

.feature-panel {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  background-color: #223035;
  color: #f5f5f5;
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.stacked {
  flex-direction: column;
  align-items: flex-start;
}

.section-card {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.section-card h2,
.section-card h3 {
  margin-top: 0;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #233238;
}

.btn.light {
  background: #f2d7b6;
  color: #1f2528;
}

.form-block {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
  color: #203038;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #11181b;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  margin-top: 40px;
}

.sticky-cta a {
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

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

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: #1f2528;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
  }

  .hero,
  .section {
    flex-direction: column;
  }
}
