* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2430;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #2a4d3f;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-label {
  font-size: 12px;
  background-color: #e7dfd5;
  color: #3b3b3b;
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 24px;
  font-size: 18px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.hero-card {
  background-color: #e7dfd5;
  padding: 24px;
  border-radius: 24px;
  position: absolute;
  bottom: -20px;
  left: -20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  background-color: #c8d3ce;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background-color: #2a4d3f;
  color: #fff;
}

.btn.secondary {
  background-color: #b46b4f;
}

.btn.link {
  background-color: transparent;
  color: #2a4d3f;
  border: 1px solid #2a4d3f;
}

.section {
  margin-top: 72px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.asym-block {
  flex: 1 1 280px;
  background-color: #fefcf8;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.offset {
  margin-top: 32px;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d7e0dd;
  min-height: 220px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(22, 24, 29, 0.08);
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  font-weight: 700;
  color: #2a4d3f;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 240px;
  background-color: #f2ece5;
  padding: 18px;
  border-radius: 16px;
}

.form-wrap {
  background-color: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #2a4d3f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.sticky-cta button {
  background-color: #fff;
  color: #2a4d3f;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #d6cec4;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #1f2430;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background-color: #f6f3ef;
  color: #1f2430;
}

.cookie-actions .reject {
  background-color: #b46b4f;
  color: #fff;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background-color: #fefcf8;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.simple-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.inline-link {
  text-decoration: underline;
}

.bg-panel {
  background-color: #e3e8e2;
  padding: 28px;
  border-radius: 26px;
}

@media (max-width: 780px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
