* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #1b4f72;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #f0ebe4;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e3dbd2;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand h2 {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 13px;
  color: #6b4f3f;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 6px 0;
  font-weight: 600;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: #1b4f72;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background-color: #e8d7c5;
  color: #1f2933;
}

.btn.link {
  background: transparent;
  color: #1b4f72;
  border: 1px solid #1b4f72;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 40px 48px 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0;
}

.section.alt {
  background-color: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.08);
}

.section.split {
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 41, 51, 0.55);
  border-radius: 28px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-frame {
  background-color: #d9d1c8;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.08);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #1b4f72;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 38, 50, 0.6);
  border-radius: 20px;
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.form-block {
  background-color: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7c0b8;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1b4f72;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(31, 41, 51, 0.2);
  border: none;
}

.footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d9d1c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #3d3d3d;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
}

.subtle {
  color: #6b6b6b;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main {
    padding: 32px 24px 80px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
