* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d2732;
  background: #f6f8f9;
  line-height: 1.6;
}

a {
  color: #1a6b64;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5ecea;
  padding: 18px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #56606b;
  background: #eef4f3;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a,
.nav button {
  background: none;
  border: none;
  color: #1d2732;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
}

.nav a:focus,
.nav button:focus {
  outline: 2px solid #1a6b64;
  outline-offset: 3px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 36px 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .content,
.split > .visual {
  flex: 1 1 320px;
}

.hero {
  background: #0f3f3a;
  color: #f4fbfa;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero .content h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero .content p {
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  background: #1a6b64;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1a6b64;
  border: 1px solid #1a6b64;
}

.section-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(17, 26, 31, 0.08);
}

.section-card h2,
.section-card h3 {
  margin: 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #f2f6f5;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #0f3f3a;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7e6e2;
}

.cover-img {
  object-fit: cover;
}

.testimonial {
  background: #122d2a;
  color: #e8f6f3;
  padding: 22px;
  border-radius: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd9d6;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.85rem;
  color: #4f5b66;
}

.cta-strip {
  background: #e1f1ee;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1a6b64;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(15, 63, 58, 0.3);
  z-index: 999;
}

.sticky-cta button {
  background: #ffffff;
  color: #1a6b64;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.footer {
  background: #0f1c1c;
  color: #dfe7e5;
  padding: 28px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer a {
  color: #9ed8cf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1d2732;
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  box-shadow: 0 18px 40px rgba(20, 30, 35, 0.18);
  display: none;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #1a6b64;
  background: #1a6b64;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #ffffff;
  color: #1a6b64;
}

.page-hero {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(17, 26, 31, 0.07);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.split-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-section {
  background: #0b2f2c;
  color: #f2fbf9;
  border-radius: 24px;
  padding: 28px;
}

.bg-image-1 {
  background-image: url("https://images.unsplash.com/photo-1765850262030-1ae93e474473?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-2 {
  background-image: url("https://images.unsplash.com/photo-1760537760008-5fd5b1f872d4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(11, 47, 44, 0.82);
  border-radius: 20px;
  padding: 24px;
}

@media (max-width: 780px) {
  .hero {
    padding: 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
