* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #e8e2da;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  padding: 8px 10px;
  background: #f1d6b7;
  color: #3a2d20;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
  background: #f6f0e8;
}

.nav-links a:hover {
  background: #ead9c6;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
}

.section.alt {
  background: #f1f5f4;
}

.section.dark {
  background: #2b2f33;
  color: #f5f5f5;
}

.section.highlight {
  background: #efe6f7;
}

.section.bg-photo {
  background-color: #3b4345;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-photo .overlay {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 280px;
}

.split .media {
  flex: 1 1 260px;
  background: #d6dee2;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #f9f7f4;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-img {
  background: #e5e0d6;
  border-radius: 14px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1b1d1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #ffffff;
  color: #1b1d1f;
  border: 1px solid #1b1d1f;
}

.button:hover {
  opacity: 0.9;
}

.inline-link {
  text-decoration: underline;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-card {
  flex: 1 1 220px;
  border-radius: 16px;
  padding: 20px;
  background: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card strong {
  font-size: 20px;
}

.quote {
  border-left: 4px solid #c2b6a3;
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  font-size: 14px;
}

.footer {
  padding: 20px 28px 40px;
  background: #e8e2da;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2f5b52;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.sticky-cta:hover {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1f2427;
  color: #ffffff;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  font-size: 13px;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-grid .mini-card {
  flex: 1 1 220px;
  background: #f2efe9;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner {
  background: #e8eef1;
  padding: 22px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 28px 20px 80px;
  }

  .sticky-cta {
    right: 16px;
  }
}
