* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222222;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  background-color: #f7f4ef;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: #2d5a4f;
}

.ad-label {
  font-size: 0.78rem;
  color: #2d5a4f;
  border: 1px solid #2d5a4f;
  padding: 4px 10px;
  border-radius: 999px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 36px;
  padding: 64px 6%;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e6dfd2;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.section-contrast {
  background-color: #ffffff;
}

.section-dark {
  background-color: #2d5a4f;
  color: #f7f4ef;
}

.section-dark a {
  color: #f7f4ef;
}

.section-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-bg-1::before,
.section-bg-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 239, 0.92);
}

.section-bg-1 .content,
.section-bg-1 .media,
.section-bg-2 .content,
.section-bg-2 .media {
  position: relative;
  z-index: 1;
}

.section-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #2d5a4f;
  background-color: #2d5a4f;
  color: #f7f4ef;
  font-size: 0.95rem;
  cursor: pointer;
}

.cta-button.secondary {
  background-color: transparent;
  color: inherit;
}

.cta-button:hover,
.cta-button:focus {
  opacity: 0.88;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background-color: #f1ede4;
  border-radius: 16px;
  align-items: center;
}

.service-item span {
  font-weight: 600;
}

.badge {
  background-color: #f7f4ef;
  color: #2d5a4f;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid #c2b8a3;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 30, 20, 0.08);
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-buttons button {
  border-radius: 999px;
  border: 1px solid #2d5a4f;
  padding: 8px 16px;
  background-color: transparent;
  cursor: pointer;
}

.choice-buttons button.active {
  background-color: #2d5a4f;
  color: #f7f4ef;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c2b8a3;
}

.form-message {
  font-size: 0.85rem;
  color: #b04b4b;
}

footer {
  padding: 40px 6%;
  background-color: #1b2d29;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.legal-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #2d5a4f;
  color: #f7f4ef;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #2d5a4f;
  font-size: 0.9rem;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  opacity: 0.88;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #2d5a4f;
  padding: 8px 16px;
  background-color: #2d5a4f;
  color: #f7f4ef;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #2d5a4f;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-card {
  display: flex;
  gap: 14px;
  background-color: #f1ede4;
  padding: 12px;
  border-radius: 16px;
  align-items: center;
}

.mini-card .thumb {
  width: 96px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d8d1c3;
  flex-shrink: 0;
}

.mini-card .thumb img {
  width: 100%;
  height: 100%;
}

.callout {
  padding: 18px;
  background-color: #f7f4ef;
  border-left: 4px solid #2d5a4f;
  border-radius: 12px;
}

.note {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .split {
    padding: 48px 6%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
