* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f1e;
  background-color: #f5f3ee;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 14px;
  background-color: #ffffff;
  border-bottom: 1px solid #e6e1d8;
}

.brand-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5b5b5b;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: #1d1f1e;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f1ede4;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 52px 6vw;
  background-color: #dfe7df;
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  padding: 28px;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

.hero-card h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: #2f5d3a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.btn.secondary {
  background-color: #d5c9b6;
  color: #1d1f1e;
}

.text-link {
  color: #2f5d3a;
  text-decoration: underline;
  font-size: 14px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.section h2 {
  margin: 0;
  font-size: 26px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card.highlight {
  background-color: #f3ede2;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d9d2c2;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.inline-media img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d9d2c2;
}

.list-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5dfd3;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c9b6;
  font-size: 14px;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background-color: #2f5d3a;
  color: #ffffff;
  border-radius: 18px;
}

.cta-band .btn {
  background-color: #ffffff;
  color: #2f5d3a;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid #2f5d3a;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background-color: #1f2322;
  color: #f5f3ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  z-index: 10;
}

.sticky-cta a {
  background-color: #2f5d3a;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

.cookie-actions .accept {
  background-color: #2f5d3a;
  color: #ffffff;
}

.cookie-actions .reject {
  background-color: #d5c9b6;
}

.hero,
.section,
.footer {
  position: relative;
}

.layered {
  margin-top: -30px;
}

.accent-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #e7ded0;
  border-radius: 18px;
  padding: 20px;
}

.wide-bg {
  background-color: #cfe0d4;
  background-image: url("https://images.unsplash.com/photo-1477973770766-6228305816df?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.wide-bg .card {
  background-color: rgba(255, 255, 255, 0.92);
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 6vw;
  background-color: #ffffff;
}

.service-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.92);
}

.service-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d9d2c2;
}

@media (max-width: 720px) {
  .hero-card h1 {
    font-size: 28px;
  }

  .inline-media img {
    width: 100%;
    height: 200px;
  }
}
