* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 24px;
  background: #f2eee7;
  border-bottom: 1px solid #d8d2c8;
}

.nav-left,
.nav-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #4c4c4c;
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #1c1c1c;
  color: #f6f3ee;
  border: none;
  border-radius: 22px;
  font-size: 14px;
}

.btn-secondary {
  background: #5c4d3f;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9c2b5;
  color: #f6f3ee;
  padding: 110px 24px 90px;
}

.hero-inner {
  max-width: 700px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
}

.mag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mag-col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 14px;
}

.panel {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e0d9cc;
}

.img-wrap {
  background-color: #d8d2c8;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

.img-short {
  height: 170px;
}

.img-medium {
  height: 240px;
}

.img-tall {
  height: 320px;
}

.inline-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.spaced-links {
  margin-top: 16px;
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c8c0b3;
  color: #f6f3ee;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e0d9cc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cfc7bb;
  font-size: 15px;
}

.footer {
  background: #ede7dd;
  padding: 30px 24px;
  border-top: 1px solid #d8d2c8;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #4f4f4f;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #1c1c1c;
  color: #f6f3ee;
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #f6f3ee;
  color: #1c1c1c;
  border: none;
  border-radius: 18px;
  padding: 8px 14px;
}

.hero-small {
  background-color: #d6d1c7;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-columns .panel {
  flex: 1 1 320px;
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
