* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2429;
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #2f6f61;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid #e2e6ea;
  background-color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nav .brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f6b75;
  padding: 6px 10px;
  border: 1px solid #d5dbe0;
  border-radius: 999px;
}

.section {
  padding: 64px 6vw;
}

.section.tight {
  padding: 36px 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 50%;
}

.hero-media {
  min-height: 360px;
  border-radius: 18px;
  background-color: #e6eef2;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.insight-bg {
  background-color: #f2f5ef;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1c2328;
}

.soft-panel {
  background-color: #f7f2eb;
  border-radius: 18px;
  padding: 28px;
}

.image-frame {
  background-color: #e9edf1;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border: 1px solid #e1e6eb;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #2f6f61;
  color: #ffffff;
  border: 0;
  font-size: 0.95rem;
}

.btn.secondary {
  background-color: #1f2429;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #2f6f61;
  color: #2f6f61;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(31, 36, 41, 0.18);
}

.form-wrap {
  background-color: #ffffff;
  border: 1px solid #e2e6ea;
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6dd;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  padding: 40px 6vw;
  background-color: #1f2429;
  color: #ffffff;
}

footer a {
  color: #c7f0e5;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.disclaimer {
  font-size: 0.9rem;
  color: #dfe6ec;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #d1d7dd;
  padding: 18px;
  display: none;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(31, 36, 41, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-hero {
  min-height: 260px;
  border-radius: 18px;
  background-color: #e8eef4;
  background-size: cover;
  background-position: center;
}

.page-hero.about {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.page-hero.services {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.page-hero.contact {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background-color: #f7f7f4;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  color: #1f2429;
}

.note {
  color: #5f6b75;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  header,
  .section {
    padding: 36px 6vw;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
