* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2428;
  background: #f6f3ee;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #efe8df;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #22313f;
  color: #f7f4ef;
  width: fit-content;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.sidebar-cta {
  padding: 16px;
  border-radius: 16px;
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 60px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  color: #f5f5f3;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 33, 39, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  background: #2f6d6a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: #f7f4ef;
  color: #2f3b40;
  border: 1px solid #cfc7ba;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-frame {
  width: 100%;
  border-radius: 18px;
  background: #d6dbe0;
  overflow: hidden;
}

.frame-tall {
  height: 320px;
}

.frame-medium {
  height: 300px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(27, 33, 38, 0.08);
}

.card img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  background: #d9dee3;
}

.inline-cta {
  font-weight: 600;
  color: #2f6d6a;
}

.flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.flow-pill {
  padding: 10px 14px;
  border-radius: 20px;
  background: #e7efe9;
  font-size: 13px;
}

.cta-panel {
  background: #23343f;
  color: #f7f4ef;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(27, 33, 38, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d4d8;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.footer {
  background: #1f262b;
  color: #e9e4dc;
  padding: 36px 72px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #c5bfb3;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #2f6d6a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(26, 35, 40, 0.2);
  z-index: 4;
}

.sticky-cta span {
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(27, 33, 38, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: #e8eef0;
  padding: 48px 72px 24px;
}

.page-hero h1 {
  margin: 0;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #f7f4ef;
  border-left: 4px solid #2f6d6a;
  padding: 16px;
  border-radius: 12px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
}

.bg-insight .highlight {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: #f7f4ef;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .section {
    padding: 42px 24px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .footer {
    padding: 32px 24px;
  }

  .page-hero {
    padding: 40px 24px 20px;
  }
}
