* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1a1a;
  --muted: #6a5f5a;
  --rose: #e7b7c6;
  --sage: #d9e4d7;
  --peach: #f4dfd4;
  --cloud: #f7f3f1;
  --accent: #b44b6a;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 10px;
  gap: 12px;
}

.brand {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  background: var(--peach);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--rose);
  padding: 36px;
  border-radius: 26px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.hero .hero-text {
  flex: 1 1 320px;
  min-width: 260px;
  z-index: 1;
}

.hero .hero-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #f2d6de;
  border-radius: 22px;
  overflow: hidden;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d1a1a;
  color: #fff;
  font-size: 14px;
  z-index: 10;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  align-items: center;
}

.section.offset-left {
  flex-direction: row-reverse;
  background: var(--sage);
  padding: 28px;
  border-radius: 24px;
}

.section.offset-right {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
}

.section .text {
  flex: 1 1 320px;
  min-width: 260px;
}

.section .media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #e8e2df;
  border-radius: 20px;
  overflow: hidden;
}

.section h2 {
  margin-top: 0;
  font-size: 28px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #f1e6e2;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  background: var(--peach);
  padding: 28px;
  border-radius: 26px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6c6c1;
  font-size: 15px;
}

.footer {
  margin-top: 60px;
  padding: 30px 20px 40px;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: 24px;
}

.footer .col {
  flex: 1 1 220px;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: #fff1f4;
  border-radius: 20px;
  padding: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.hero-inline {
  background: #f6e9e3;
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-inline .hero-inline-text {
  flex: 1 1 240px;
}

.hero-inline .hero-inline-media {
  flex: 1 1 220px;
  background: #e6d8d1;
  border-radius: 18px;
  overflow: hidden;
}

.legal-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}
