* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1a1a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 28px 0 18px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #3f3a35;
  border-radius: 18px;
  background: #efe8dd;
}

.hero {
  position: relative;
  padding: 120px 0 90px;
  color: #fefbf7;
  background-color: #2b2722;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 12px;
}

.hero-copy {
  max-width: 520px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #f4c95d;
  color: #1b1a1a;
  border-radius: 30px;
  font-weight: 600;
  gap: 8px;
}

.btn.secondary {
  background: #1b1a1a;
  color: #fefbf7;
}

.btn.light {
  background: #ffffff;
  color: #1b1a1a;
  border: 1px solid #d7d1c6;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 18px;
}

.asymm {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.asymm.reverse {
  flex-direction: row-reverse;
}

.asymm .text-block {
  flex: 1.1;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.asymm .image-block {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #e2ddd4;
}

.bg-fallback-1 {
  background: #e2ddd4;
}

.bg-fallback-2 {
  background: #ede7dc;
}

.bg-fallback-3 {
  background: #d9d0c5;
}

.bg-fallback-4 {
  background: #e5ded3;
}

.bg-fallback-5 {
  background: #d8d2c7;
}

.bg-fallback-6 {
  background: #e6dcd1;
}

.floating-note {
  position: absolute;
  right: 8%;
  top: -32px;
  background: #f4c95d;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 600;
  color: #1b1a1a;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.price {
  font-weight: 700;
  color: #493c2b;
}

.callout {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #1b1a1a;
  color: #fefbf7;
  border-radius: 22px;
  padding: 32px;
}

.callout p {
  margin: 0;
}

.inline-link {
  color: #1b1a1a;
  text-decoration: underline;
  font-weight: 600;
}

.form-section {
  background: #efe8dd;
}

.form-wrapper {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7d1c6;
  font-size: 1rem;
  background: #ffffff;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  background: #1b1a1a;
  color: #fefbf7;
  cursor: pointer;
}

.form-note {
  flex: 1 1 240px;
}

.split-stack {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-stack .card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.footer {
  background: #141311;
  color: #fefbf7;
  padding: 40px 0 60px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d6d1c8;
  margin-top: 18px;
  max-width: 720px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 18px;
  border-radius: 26px;
  background: #f4c95d;
  color: #1b1a1a;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1b1a1a;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 340px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1b1a1a;
  color: #fefbf7;
}

.cookie-reject {
  background: #f4c95d;
  color: #1b1a1a;
}

.page-hero {
  padding: 90px 0 70px;
  color: #fefbf7;
  position: relative;
  background-color: #2b2722;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 17, 16, 0.55);
}

.page-hero .container {
  position: relative;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
  gap: 20px;
  flex-wrap: wrap;
}

.bg-hero-index {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1569189830976-c86a2dfed895?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzMXx8RXZvbHV0aWUlMjB2YW4lMjBwdWJsaWVrZSUyMHByZXNlbnRhdGllcyUyMG1ldCUyMGFhbmRhY2h0JTJDJTIwc3RlbSUyMGVuJTIwcml0bWUufG5sfDB8MHx8fDE3ODM1MDU5ODh8MA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .asymm,
  .asymm.reverse,
  .callout,
  .hero-content {
    flex-direction: column;
  }

  .floating-note {
    position: static;
    margin-bottom: 20px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
