* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background: #1f2a32;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #d4cfc9;
}

.ad-label {
  font-size: 0.85rem;
  color: #f8d37a;
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #f5f2ee;
  color: #1c1c1c;
  font-weight: 600;
  cursor: pointer;
}

.btn-dark {
  background: #1c1c1c;
  color: #f5f2ee;
  border-color: #1c1c1c;
}

.btn-outline {
  background: transparent;
  color: #f5f2ee;
  border-color: #f5f2ee;
}

.content {
  flex: 1;
  padding: 36px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 0.9;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #dcd6cf;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.muted {
  color: #5d5d5d;
  line-height: 1.6;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-row {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.card {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-image {
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  background: #e6e1db;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4e3c2;
  font-size: 0.8rem;
  font-weight: 600;
}

.highlight {
  background: #fff6e8;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d2cc;
  font-size: 0.95rem;
}

.form-panel button {
  align-self: flex-start;
}

.image-strip {
  display: flex;
  gap: 16px;
}

.image-strip .strip-image {
  flex: 1;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d1c8;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c1c1c;
  color: #f5f2ee;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: #f5f2ee;
  color: #1c1c1c;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  border-top: 1px solid #d9d3cd;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.info-label {
  min-width: 120px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .content {
    padding: 28px 24px 80px;
  }

  .hero,
  .section-row,
  .image-strip {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
