* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1c1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1c1d1f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #f0e8df;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f4c3d;
}

.brand-mark {
  font-size: 20px;
  font-weight: 700;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.nav-list a {
  font-weight: 600;
}

.sidebar-note {
  font-size: 14px;
  color: #604a3b;
}

.sidebar-cta {
  margin-top: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #2f3c30;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.main {
  flex: 1;
  padding: 40px 56px 90px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 48px 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 25, 20, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: underline;
}

.section {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
}

.section.reverse {
  flex-direction: row-reverse;
  background: #f9f6f2;
}

.section.solo {
  flex-direction: column;
  background: #fff7ee;
}

.section-text {
  flex: 1;
}

.section-text h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-text ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-media {
  flex: 1;
  background: #e9e2d9;
  border-radius: 10px;
  overflow: hidden;
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 10px;
  width: 100%;
}

.image-frame {
  background: #e9e2d9;
  border-radius: 10px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #2f3c30;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 28px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 38, 34, 0.55);
}

.highlight-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.form-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d2c6bb;
  font-size: 15px;
}

.form-panel textarea {
  min-height: 110px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 14px;
  color: #6b5a4d;
}

.sticky-cta {
  position: fixed;
  left: 280px;
  right: 24px;
  bottom: 18px;
  background: #2f3c30;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.sticky-cta button {
  background: #ffffff;
  color: #2f3c30;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #5d4f43;
  padding-top: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 280px;
  right: 24px;
  bottom: 80px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #2f3c30;
  background: #2f3c30;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions .secondary {
  background: #ffffff;
  color: #2f3c30;
}

.simple-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-section h1 {
  font-size: 30px;
}

.simple-section h2 {
  font-size: 22px;
}

.reference-list a {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
  }

  .main {
    padding: 30px 20px 140px;
  }

  .section,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta,
  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
