* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2327;
  background: #f7f8f5;
  line-height: 1.6;
}

a {
  color: #0f6b52;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #0f6b52;
  outline-offset: 2px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8e2;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #0f6b52;
}

.ad-label {
  font-size: 13px;
  color: #47524f;
  max-width: 260px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 6% 30px;
  gap: 30px;
  background: #eef2ec;
}

.hero-copy {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 42px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-copy p {
  margin: 0 0 20px;
  color: #2b3a34;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #0f6b52;
  background: #0f6b52;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

.button:hover {
  background: #0c5742;
}

.button.secondary {
  background: transparent;
  color: #0f6b52;
}

.button.secondary:hover {
  background: #e1efe7;
}

.image-frame {
  flex: 1 1 320px;
  min-width: 280px;
  background: #dfe6e1;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 10px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 340px;
}

.split h2 {
  margin-top: 0;
  font-size: 28px;
}

.highlight {
  background: #f0f5f1;
  padding: 24px 6%;
  border-top: 1px solid #e6ece6;
  border-bottom: 1px solid #e6ece6;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.highlight-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2e8e2;
}

.services {
  padding: 0 6% 30px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e1e7e1;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: #0f6b52;
}

.storyline {
  padding: 20px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.storyline .content {
  flex: 1 1 360px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid #0f6b52;
  padding: 16px;
  border-radius: 10px;
}

.background-panel {
  position: relative;
  padding: 50px 6%;
  color: #ffffff;
  overflow: hidden;
}

.background-panel .background-media {
  position: absolute;
  inset: 0;
  background: #25332e;
}

.background-panel .background-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.background-panel .background-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
  background: rgba(17, 28, 24, 0.72);
  padding: 24px;
  border-radius: 16px;
}

.form-section {
  padding: 30px 6%;
  background: #eef2ec;
}

.form-panel {
  max-width: 720px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e1e7e1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd8cf;
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  padding: 30px 6%;
  background: #1d2723;
  color: #e6f0ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #b9e5d0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c2cbc5;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-hero {
  padding: 40px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: #eef2ec;
}

.simple-hero h1 {
  margin-top: 0;
  font-size: 32px;
}

.simple-content {
  padding: 20px 6% 40px;
  max-width: 880px;
}

.info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-block {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e2e8e2;
}

.centered {
  text-align: center;
}

.muted {
  color: #5b6762;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.list-inline li {
  background: #e5f0ea;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    position: static;
    padding: 0 6% 20px;
  }
}
