* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: #efe9e1;
  border-radius: 18px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-block h1,
.brand-block h2 {
  font-size: 22px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: #5c4e3f;
  background: #f6efe6;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0d7cc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.08);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h2 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1d1d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: #5b4637;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.12);
}

.link-inline {
  text-decoration: underline;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e2d7c8;
  min-height: 280px;
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
  border-radius: 26px;
  position: relative;
}

.offset-section.left {
  margin-right: 70px;
}

.offset-section.right {
  margin-left: 70px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
  background: #f3eee7;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel img {
  border-radius: 16px;
  background-color: #d9cfbf;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6efe6;
  font-size: 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eee2d3;
}

.service-card img {
  border-radius: 16px;
  background-color: #dcd1c3;
  height: 180px;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  background: #1d1d1d;
  color: #fff;
}

.cta-band .btn {
  background: #ffffff;
  color: #1d1d1d;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #eee2d3;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

select,
input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cabb;
  font-size: 15px;
  background: #faf8f5;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #5b4f44;
  padding: 26px;
  border-radius: 20px;
  background: #f0e8dd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #5b4637;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: #1d1d1d;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e7dccc;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1d1d1d;
  color: #fff;
}

.cookie-actions .reject {
  background: #efe9e1;
  color: #1d1d1d;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
}

.legal-page h2 {
  font-size: 28px;
}

.legal-page ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.image-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-stack figure {
  flex: 1 1 220px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e0d5c7;
}

.simple-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f7f3ee;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .offset-section.left,
  .offset-section.right {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
