* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e1f22;
  background: #f7f6f4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e1db;
  padding: 18px 24px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0ede7;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 24px;
}

.section--tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section--accent {
  background: #ffffff;
}

.section--dark {
  background: #1d2731;
  color: #f7f6f4;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.hero-text h1 {
  margin-top: 0;
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-media {
  flex: 1 1 380px;
  border-radius: 18px;
  overflow: hidden;
  background: #d5d9dc;
  min-height: 320px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  position: relative;
  top: -18px;
}

.media-frame {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #cdd7df;
  min-height: 260px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1d2731;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-button {
  border: none;
  background: #1d2731;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-button.secondary {
  background: #e5e0d6;
  color: #1d2731;
}

.inline-link {
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid #b0b9c3;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c6bf;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #4a4f55;
}

.footer {
  background: #141b22;
  color: #cfd6dc;
  padding: 32px 24px;
}

.footer a {
  color: #cfd6dc;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 320px;
}

.page-hero .media {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #d7dee4;
  min-height: 220px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.callout {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e3dfd7;
}

.notice {
  font-size: 0.9rem;
  color: #cfd6dc;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
