* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e7dfd7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #e9dfd4;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 4px 0;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 56px 6vw 48px;
  background-color: #f2ece6;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  background-color: #d7cfc7;
  padding: 14px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.primary-cta {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #2c3a4f;
  color: #ffffff;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #2c3a4f;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 280px;
}

.column.narrow {
  flex: 0 1 240px;
}

.column.wide {
  flex: 2 1 420px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border: 1px solid #eadfd3;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-media {
  background-color: #d7cfc7;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 160px;
}

.price-tag {
  font-weight: 700;
  color: #2c3a4f;
}

.editorial-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 20px;
  border-left: 4px solid #2c3a4f;
  background-color: #ffffff;
  font-style: italic;
}

.bg-panel {
  background-color: #f0e7dd;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #eadfd3;
  padding: 24px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cfc7;
  font-size: 14px;
  background-color: #fbf9f7;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 22px;
  border: none;
  background-color: #2c3a4f;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #e35d5b;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  background-color: #1f2328;
  color: #f6f2ee;
  padding: 36px 6vw;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: #c9c0b6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd3;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 18px;
  border: 1px solid #2c3a4f;
  background-color: #ffffff;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #2c3a4f;
  color: #ffffff;
}

.simple-header {
  padding: 40px 6vw 16px;
}

.simple-header h1 {
  margin: 0;
}

.simple-section {
  padding: 16px 6vw 40px;
}

.notice-box {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd3;
  padding: 20px;
  margin-top: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd3;
  padding: 20px;
}

.thanks-box {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd3;
  padding: 28px;
  max-width: 640px;
}

@media (max-width: 920px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
