* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2127;
  --muted: #5b6470;
  --accent: #2f6f6a;
  --accent-soft: #e5f3f1;
  --sand: #f6f2ed;
  --stone: #ece7df;
  --deep: #0f2c2b;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--stone);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--deep);
  border-radius: 14px;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 50%;
  min-width: 280px;
}

.split-text {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.split-text.alt {
  background: var(--sand);
}

.split-media {
  background: var(--stone);
  display: flex;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero {
  background: linear-gradient(90deg, rgba(15, 44, 43, 0.85), rgba(15, 44, 43, 0.2)), url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  padding: 110px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero p {
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.btn.light {
  background: #ffffff;
  color: var(--deep);
}

.inline-link {
  font-weight: 600;
}

.section-heading {
  font-size: 28px;
  letter-spacing: 0.3px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #dfe6e1;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--deep);
}

.form-section {
  background: var(--accent-soft);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cfd8d6;
  background: #ffffff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfd8d6;
  font-size: 14px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
}

.background-panel {
  background: linear-gradient(120deg, rgba(246, 242, 237, 0.9), rgba(246, 242, 237, 0.7)), url("https://images.unsplash.com/photo-1448630360428-65456885c650?w=1400&q=80") center/cover no-repeat;
}

.footer {
  padding: 40px 6%;
  background: var(--deep);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer small {
  color: #d4d7dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 16px;
  max-width: 520px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
}

.minimal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section {
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  background: #ffffff;
}

@media (max-width: 820px) {
  .hero {
    padding: 80px 6%;
  }

  .split-text {
    padding: 40px 6%;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
