* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background-color: #f7f5f2;
  border-bottom: 1px solid #e2ded8;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 20px;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  transform: translateY(-2px);
}

.ad-label {
  font-size: 0.85rem;
  color: #8a5a2b;
  background-color: #f1e8dc;
  padding: 6px 12px;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: 10% 8%;
  background-color: #3a332c;
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf9;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid #1b1b1b;
  background-color: #1b1b1b;
  color: #fefcf9;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background-color: #2f2f2f;
}

.btn-light {
  background-color: #fefcf9;
  color: #1b1b1b;
}

.section {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 280px;
  background-color: #e6e0d6;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #eae4db;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.highlight {
  background-color: #1b1b1b;
  color: #fefcf9;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background-color: #f1e8dc;
  padding: 24px;
  border-radius: 18px;
}

.pricing {
  background-color: #f1e8dc;
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1b1b1b;
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(247, 245, 242, 0.9);
}

.pricing .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.15rem;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4cec6;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #8a5a2b;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #1b1b1b;
  color: #fefcf9;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.footer {
  background-color: #141414;
  color: #fefcf9;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.meta {
  font-size: 0.85rem;
  color: #cfc7bd;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  border: 1px solid #1b1b1b;
  border-radius: 20px;
  padding: 8px 14px;
  background-color: #1b1b1b;
  color: #fefcf9;
  cursor: pointer;
}

.cookie-actions .btn-light {
  background-color: #fefcf9;
  color: #1b1b1b;
}

.page-hero {
  background-color: #f1e8dc;
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  background-color: #e2ded8;
}

.legal-content {
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-box {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}
