*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f5f1ea;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 1rem;
  background-color: #f5f1ea;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background-color: #e9dfd1;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #d6c4ad;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 6vw;
  background-color: #cec0ae;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-small {
  min-height: 45vh;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.hero-overlay {
  background-color: rgba(245, 241, 234, 0.88);
  padding: 2rem 2.5rem;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.button {
  border: none;
  background-color: #1b1b1b;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.button.secondary {
  background-color: #c98f5a;
  color: #1b1b1b;
}

.section {
  padding: 3.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.split .text {
  flex: 1 1 280px;
  min-width: 260px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #e2d5c6;
  padding: 0.8rem;
}

.card-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background-color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card .image-wrap {
  background-color: #d7c7b6;
  padding: 0.6rem;
  border-radius: 14px;
}

.card h3 {
  margin: 0;
}

.highlight {
  background-color: #efe5d8;
  border-left: 6px solid #c98f5a;
  padding: 1.2rem 1.4rem;
}

.magazine-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.magazine-columns .column {
  flex: 1 1 240px;
  min-width: 220px;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
  background-color: #f7efe5;
  padding: 1.4rem;
  border-radius: 16px;
}

.pricing {
  background-color: #1b1b1b;
  color: #fff;
}

.pricing .card {
  background-color: #2a2a2a;
  color: #fff;
}

.form-section {
  background-color: #e9dfd1;
}

.form-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #b9b1a6;
  font-size: 1rem;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  align-self: flex-end;
  background-color: #c98f5a;
  color: #1b1b1b;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer {
  margin-top: auto;
  background-color: #1b1b1b;
  color: #fff;
  padding: 2.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.simple-section {
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.legal-block {
  background-color: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background-color: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
