* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1f24;
  background-color: #f6f4f2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1a1f24;
  text-decoration: none;
}

header {
  padding: 20px 6%;
  background-color: #f2ede9;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5b5b;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.container {
  padding: 40px 6%;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight {
  background-color: #e8eef5;
  border-radius: 18px;
  padding: 30px;
}

.hero {
  background-color: #dbe4ef;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  width: 100%;
  height: 320px;
  background-color: #c8d3e1;
}

.hero-text {
  padding: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background-color: #1a1f24;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

.cta.secondary {
  background-color: #f0b429;
  color: #1a1f24;
}

.cta.inline {
  background-color: transparent;
  padding: 0;
  color: #1a1f24;
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  width: 100%;
  height: 150px;
  background-color: #f1e7dc;
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.quote {
  background-color: #ffffff;
  border-left: 4px solid #1a1f24;
  padding: 16px 20px;
  font-style: italic;
}

.form-wrap {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 1rem;
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

footer {
  background-color: #1a1f24;
  color: #ffffff;
  padding: 30px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #f0b429;
  color: #1a1f24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1a1f24;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 10px;
}

.cookie-accept {
  background-color: #1a1f24;
  color: #ffffff;
}

.cookie-reject {
  background-color: #e5e5e5;
  color: #1a1f24;
}

.wide-image {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d1c7;
}

.note {
  font-size: 0.95rem;
  color: #4a4a4a;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
