* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff3e2;
  border-bottom: 1px solid #efe1d0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1b1b1b;
  color: #fff3e2;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 40px;
  gap: 30px;
}

.hero-visual {
  flex: 1.1;
  min-height: 420px;
  background-color: #c1c7d0;
  background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 36px;
}

.hero-content h1 {
  font-size: 38px;
  margin: 0;
}

.hero-content p {
  margin: 0;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: #1b1b1b;
  color: #fff3e2;
}

.btn-light {
  background: #fff3e2;
  color: #1b1b1b;
  border: 1px solid #e5d2bd;
}

.magazine-row {
  display: flex;
  gap: 24px;
  padding: 40px;
  flex-wrap: wrap;
}

.feature-column {
  flex: 1.2;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
}

.side-column {
  flex: 0.8;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.media-box {
  background-color: #d7dce2;
  border-radius: 16px;
  overflow: hidden;
}

.section-dark {
  background: #1b1b1b;
  color: #f7f4f0;
  padding: 50px 40px;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.split .text {
  flex: 1;
  min-width: 260px;
}

.split .visual {
  flex: 1;
  min-width: 260px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: #5a2c12;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 50px 40px;
  background: #fff3e2;
}

.form-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
  font-size: 14px;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d8c8b9;
  font-size: 14px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #fff3e2;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.footer {
  padding: 40px;
  background: #141414;
  color: #f7f4f0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f7f4f0;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.page-header {
  padding: 40px;
  background: #fff3e2;
}

.content-block {
  padding: 30px 40px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
