* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2428;
  --muted: #5f6b73;
  --accent: #2f6f6b;
  --accent-soft: #d7ebe7;
  --warm: #f0e4d7;
  --paper: #ffffff;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--accent-soft);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--accent);
}

header {
  padding: 28px 0 40px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e6ded5;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--ink);
}

.split {
  display: flex;
  gap: 32px;
  padding: 52px 0;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #e0e7e0;
  box-shadow: var(--shadow);
}

.section-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--warm);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-section {
  background: var(--accent-soft);
  padding: 48px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5d1;
  font-size: 1rem;
  width: 100%;
  background: #fff;
}

.two-col {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

footer {
  margin-top: auto;
  background: #1c2628;
  color: #f3f5f4;
  padding: 36px 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-links a {
  color: #f3f5f4;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus {
  border-color: #f3f5f4;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--paper);
  padding: 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #242f32;
  color: #f7f8f8;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f3f5f4;
  color: #1c2628;
}

.cookie-reject {
  background: transparent;
  color: #f3f5f4;
  border: 1px solid #f3f5f4;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.mt-18 {
  margin-top: 18px;
}
