* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e2a24;
  background-color: #f5f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background-color: #e8ede6;
  border-bottom: 1px solid #cfd8d2;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nav a,
.nav span {
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px dashed #63725e;
  background-color: #fdfcf8;
  font-size: 0.85rem;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #eef1ec;
}

.section.dark {
  background-color: #26352f;
  color: #f5f4f0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw;
}

.hero-card {
  background-color: rgba(245, 244, 240, 0.95);
  padding: 32px;
  max-width: 520px;
  border-radius: 18px;
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: 2.4rem;
}

.hero-card p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.cta-button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2e5a45;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.inline-cta {
  color: #2e5a45;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(30, 42, 36, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  color: #2e5a45;
}

.media-frame {
  background-color: #dfe6da;
  border-radius: 16px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-block {
  background-color: #fff;
  border-radius: 18px;
  padding: 28px;
  margin-top: -40px;
  box-shadow: 0 20px 40px rgba(30, 42, 36, 0.12);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-wrap {
  background-color: #fdfcf8;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(30, 42, 36, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd6cf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 6vw;
  background-color: #e8ede6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #3b4a42;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background-color: #335b47;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(30, 42, 36, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2f27;
  color: #f5f4f0;
  padding: 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background-color: #f5f4f0;
  color: #1f2f27;
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid #f5f4f0;
  color: #f5f4f0;
}

.background-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.background-story {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.section-banner {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #f5f4f0;
}

.small-banner {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 36px;
  color: #f5f4f0;
}

.banner-about {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.banner-services {
  background-image: url("https://images.unsplash.com/photo-1465101162946-4377e57745c3?w=1400&q=80");
}

.banner-contact {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.banner-privacy {
  background-image: url("https://images.unsplash.com/photo-1492496913980-501348b61469?w=1400&q=80");
}

.banner-gdpr {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
}

.banner-cookies {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.banner-terms {
  background-image: url("https://images.pexels.com/photos/11987970/pexels-photo-11987970.jpeg");
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #f5f4f0;
  color: #1f2f27;
  font-size: 0.9rem;
}

.notice {
  background-color: #fff;
  padding: 18px;
  border-left: 4px solid #2e5a45;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

