* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d232a;
  background-color: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #f1ede7;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background-color: #e2dacf;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: #ffffff;
}

.nav-links a span {
  font-size: 12px;
  color: #5c6570;
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1d232a;
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.main {
  flex: 1;
  padding: 32px 32px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d8dedf;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  position: relative;
  padding: 40px;
  max-width: 560px;
  z-index: 2;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #1d232a;
  font-size: 14px;
}

.button.alt {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
}

.section.light {
  background-color: #fdfbf7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 260px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b727c;
}

.image-wrap {
  background-color: #dce2e4;
  border-radius: 16px;
  overflow: hidden;
}

.image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #f7f4ef;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #dce2e4;
}

.card .price {
  font-weight: 600;
  color: #1d232a;
}

.quote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 220px;
  background-color: #f0ece5;
  padding: 16px;
  border-radius: 16px;
  font-size: 14px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 13px;
  color: #555f6b;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9cfd6;
  font-size: 14px;
  font-family: inherit;
}

.form-wrap button {
  border: none;
  background-color: #1d232a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  font-size: 13px;
  color: #5a616c;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1d232a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 6;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: 300px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #1d232a;
  color: #ffffff;
}

.cookie-actions .reject {
  background-color: #e5e1da;
  color: #1d232a;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero h1 {
  font-size: 30px;
  margin: 0 0 12px;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  background-color: #dce2e4;
}

.legal {
  line-height: 1.6;
  font-size: 15px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background-color: #f7f4ef;
  border-radius: 16px;
  padding: 16px;
}
