* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b2a2f;
  --muted: #4a5a60;
  --accent: #1f6f78;
  --accent-soft: #e3f1f2;
  --sand: #f7f3ec;
  --leaf: #e7efe6;
  --sun: #f3efe2;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbf8;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background: var(--sun);
  border-bottom: 1px solid #e6e1d8;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.2rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 2.5rem 0 4rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2rem;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:focus {
  outline: 2px solid #0f4f55;
  outline-offset: 2px;
}

.inline-link {
  font-weight: 600;
}

.media-card {
  background: var(--leaf);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
}

.media-card img {
  width: 100%;
  height: 100%;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 10% -6% -6% 12%;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 24px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: var(--card);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(25, 45, 55, 0.08);
}

.service-card .media-card {
  flex: 1 1 180px;
  min-height: 140px;
}

.service-card .details {
  flex: 2 1 220px;
}

.price {
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.4rem;
}

.highlight-panel {
  background: var(--sand);
  border-radius: 20px;
  padding: 1.6rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 1.4rem;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 12px 26px rgba(24, 36, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid #ccd6d8;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer {
  background: var(--ink);
  color: #f3f6f7;
  padding: 2.5rem 0;
}

.footer p,
.footer a {
  color: #d4dde0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: #1a2e32;
  color: #f4f7f7;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner button {
  background: #f4f7f7;
  color: #1a2e32;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.simple-hero {
  background: var(--leaf);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 20px rgba(25, 45, 55, 0.06);
}

.policy-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--muted);
}

.contact-block {
  background: var(--sand);
  border-radius: 18px;
  padding: 1.4rem;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 0.6rem 1rem;
  }
}
