* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a30;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.layout {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.sidebar {
  background: #151c20;
  color: #f8f7f4;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  background: #f5b833;
  color: #151c20;
  padding: 12px 16px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
}

.content {
  padding: 28px 18px 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(19, 24, 27, 0.08);
}

.section-tight {
  padding: 18px 20px;
}

.section-contrast {
  background: #1f2a30;
  color: #f8f7f4;
}

.section-gradient {
  background: linear-gradient(135deg, #fef1dd, #f4f7f8);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f4f1ec;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #b35a2a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f2a30;
  color: #f8f7f4;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-light {
  background: #f5b833;
  color: #1f2a30;
}

.inline-link {
  color: #b35a2a;
  text-decoration: underline;
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-item {
  background: #f1efe9;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4d8da;
  font-size: 14px;
}

button {
  background: #1f2a30;
  color: #f8f7f4;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

button.secondary {
  background: #f1efe9;
  color: #1f2a30;
}

.footer {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #6a7378;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f05a28;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(240, 90, 40, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(19, 24, 27, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hero {
  background: #f4f7f8;
  padding: 32px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero svg {
  border-radius: 16px;
  background: #ffffff;
  padding: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #1f2a30;
  color: #f8f7f4;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 40px 40px 140px;
  }

  .section-split {
    flex-direction: row;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .meta-row {
    flex-direction: row;
  }
}
