* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1a4d4b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: #0f1f1e;
  color: #f7f5f2;
  padding: 10px 28px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar .ad-label {
  font-weight: 600;
  letter-spacing: 0.2px;
}

header {
  padding: 20px 28px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-link {
  text-decoration: underline;
}

.hero {
  padding: 40px 28px 60px;
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 31, 30, 0.12);
  position: relative;
  top: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 30, 0.2);
}

.section {
  padding: 48px 28px;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 31, 30, 0.1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price-tag {
  background: #1a4d4b;
  color: #f7f5f2;
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-flex;
  align-self: flex-start;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #f1ede6;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.service-item h3 {
  margin: 0 0 6px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(15, 31, 30, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  font-size: 15px;
}

button,
.button {
  background: #1a4d4b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button:hover,
.button:hover {
  background: #143e3c;
}

.inline-cta {
  background: #f1ede6;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.offset-panel {
  background: #1f2a2e;
  color: #f7f5f2;
  padding: 24px;
  border-radius: 16px;
  position: relative;
  top: -18px;
}

.image-frame {
  background: #d8d2c7;
  padding: 10px;
  border-radius: 16px;
}

.image-frame img {
  border-radius: 12px;
}

.callout {
  background: #e8e2d8;
  padding: 24px;
  border-radius: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #0f1f1e;
  color: #f7f5f2;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer {
  background: #0f1f1e;
  color: #f7f5f2;
  padding: 36px 28px;
  margin-top: auto;
}

.footer a {
  color: #f7f5f2;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 31, 30, 0.2);
  padding: 16px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions .button.secondary {
  background: #d8d2c7;
  color: #1f2a2e;
}

.hero-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=80");
  background-color: #2c2b2b;
}

.bg-3 {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #3a332f;
}

.bg-4 {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-color: #2d2a27;
}

.bg-9 {
  background-image: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=800&q=80");
  background-color: #3a2b25;
}

.card-img-1 {
  background-color: #d8d2c7;
}

.card-img-2 {
  background-color: #e5ddd0;
}

.card-img-3 {
  background-color: #d9d1c5;
}

.card-img-4 {
  background-color: #e1d7c8;
}

.card-img-5 {
  background-color: #dad1c1;
}

.hero-subnote {
  font-size: 14px;
  color: #546063;
}

.reference-list {
  font-size: 14px;
  opacity: 0.9;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-block {
  min-height: 260px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.map-block::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(15, 31, 30, 0.2);
}

.text-muted {
  color: #5c6669;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.thanks-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(15, 31, 30, 0.12);
  max-width: 680px;
}
