* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 8%;
  background-color: #f2ede7;
  border-bottom: 1px solid #e2d8ce;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #fff;
  border: 1px solid #e2d8ce;
}

.ad-label {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 16px;
  background-color: #1f2933;
  color: #f7f5f2;
}

.section {
  padding: 64px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #ffffff;
}

.section.soft {
  background-color: #eef1f5;
}

.section.dark {
  background-color: #1f2933;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background-color: #e6ebf0;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  background-color: #1f2933;
  color: #f7f5f2;
  border: none;
}

.button.light {
  background-color: #f7f5f2;
  color: #1f2933;
  border: 1px solid #1f2933;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  background-color: #dfe5ea;
  border-radius: 18px;
  overflow: hidden;
}

.frame-280 {
  height: 280px;
}

.frame-320 {
  height: 320px;
}

.frame-420 {
  height: 420px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2d8ce;
}

.card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #0b5c4b;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #dce6f2;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 14px;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #d8d1c6;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c0b6;
  font-size: 14px;
  background-color: #f7f5f2;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footnote {
  font-size: 13px;
  opacity: 0.8;
}

.site-footer {
  padding: 40px 8%;
  background-color: #161c20;
  color: #f7f5f2;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid div {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  background-color: #0b5c4b;
  color: #f7f5f2;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #d8d1c6;
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 16px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1f2933;
  color: #f7f5f2;
}

.cookie-reject {
  background-color: #f7f5f2;
  color: #1f2933;
  border: 1px solid #1f2933;
}

.hero-visual {
  background-color: #dfe5ea;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 24px;
}

.bg-trust {
  background-color: #cfd8df;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-color: #d6d0c6;
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.soft-panel {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 18px;
}

.content-column {
  max-width: 900px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-frame {
  background-color: #d2dce6;
  border-radius: 18px;
  overflow: hidden;
}

.map-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #d8d1c6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-image {
  height: 160px;
}

@media (max-width: 820px) {
  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
