* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1b4d3e;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background-color: #f6f3ee;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  color: #6b5f55;
  border: 1px solid #d4c9bd;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fdfbf8;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 6% 60px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  background-color: #eadfd1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1b4d3e;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: #f1e4d2;
  color: #1b4d3e;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 50px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-card {
  flex: 1;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(37, 33, 28, 0.08);
}

.split-media {
  flex: 1;
  background-color: #e0d7cb;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.services {
  padding: 40px 6% 60px;
  background-color: #fffaf4;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(39, 32, 24, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
}

.service-card .content {
  padding: 20px;
}

.price {
  font-weight: 600;
  color: #1b4d3e;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 6%;
  background-color: #1b4d3e;
  color: #fff;
}

.cta-strip.bg-scenery {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-strip a {
  color: #fff;
}

.form-section {
  padding: 50px 6%;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.form-card {
  flex: 1.1;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(39, 32, 24, 0.08);
}

.form-side {
  flex: 0.9;
  background-color: #efe6da;
  border-radius: 18px;
  padding: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc2;
  font-size: 14px;
}

.inline-link {
  text-decoration: underline;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: center;
  background-color: #fdfbf8;
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
}

.footer {
  padding: 40px 6%;
  background-color: #2e2a26;
  color: #f5efe7;
  margin-top: auto;
}

.footer a {
  color: #f5efe7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 14px;
}

.legal-box {
  background-color: #fdfbf8;
  padding: 22px;
  border-radius: 16px;
  margin-top: 24px;
  color: #2d2a26;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #b75d3a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 18, 16, 0.2);
  padding: 16px 20px;
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1b4d3e;
  background-color: #1b4d3e;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background-color: #ffffff;
  color: #1b4d3e;
}

.two-column {
  display: flex;
  gap: 30px;
  padding: 40px 6%;
}

.two-column .panel {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(39, 32, 24, 0.06);
}

.image-panel {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e6dacd;
  min-height: 260px;
}

.image-panel img {
  width: 100%;
  height: 100%;
}

.simple-header {
  padding: 40px 6% 10px;
}

.page-title {
  margin: 0 0 12px;
}

.list {
  padding-left: 18px;
}

.notice {
  background-color: #f1e4d2;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.spaced {
  margin-top: 18px;
}

@media (max-width: 920px) {
  .hero,
  .split-section,
  .form-section,
  .two-column {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }
}
