* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background-color: #f2ede6;
  border-bottom: 1px solid #e2ddd6;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f6f4f1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 6% 110px;
  min-height: 70vh;
  color: #ffffff;
  background-color: #2f2b28;
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-button {
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #f2b400;
  color: #1f1f1f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ghost-button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.section {
  padding: 70px 6%;
}

.section-tight {
  padding: 55px 6%;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.intro-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e3ded7;
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background-color: #fff7e0;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust {
  background-color: #f0ebe4;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.6);
}

.trust .trust-content {
  position: relative;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card .media {
  height: 170px;
  background-color: #e9e5df;
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  background-color: #f7f3ee;
  border-radius: 18px;
  padding: 18px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 720px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d0c9;
  font-size: 1rem;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.sticky-cta .cta-button {
  background-color: #1f1f1f;
  color: #ffffff;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background-color: #1f1f1f;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  color: #1f1f1f;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .cta-button {
  background-color: #1f1f1f;
  color: #ffffff;
}

.cookie-actions .ghost-button {
  border-color: #1f1f1f;
  color: #1f1f1f;
}

.page-hero {
  padding: 80px 6%;
  color: #ffffff;
  background-color: #2f2b28;
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.pexels.com/photos/35764095/pexels-photo-35764095.jpeg");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.muted {
  color: #6f6862;
}

.legal {
  max-width: 860px;
}
