* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e2a1f;
  background: #f5f3ee;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #e7e2d8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5c5a54;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  padding: 6px 8px;
  border-radius: 8px;
  background: transparent;
}

.nav a:hover {
  background: #d6d0c4;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: #c9d0c3;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta button {
  padding: 10px 14px;
  border: none;
  background: #2f5b36;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 32px 38px 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  padding: 38px;
  border-radius: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 27, 16, 0.72), rgba(15, 27, 16, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}

.hero-content p {
  margin: 0;
  font-size: 16px;
}

.hero-content button {
  align-self: flex-start;
  padding: 12px 18px;
  border: none;
  background: #f2c14e;
  color: #2b2b2b;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.section {
  padding: 26px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-alt {
  background: #eef0ea;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.media-frame {
  background: #dcd7cc;
  border-radius: 14px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f7f6f1;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.tag {
  font-size: 12px;
  background: #2f5b36;
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d7d2c7;
}

.inline-link {
  color: #2f5b36;
  font-weight: 600;
}

.trust-band {
  padding: 32px;
  border-radius: 18px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 33, 25, 0.7);
}

.trust-band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row button,
.form-submit {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #2f5b36;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.form-section {
  background: #f9f7f2;
  border-radius: 18px;
  padding: 28px;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 180px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc8b8;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-option.selected {
  border-color: #2f5b36;
  background: #e9efe6;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc8b8;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  background: #f2c14e;
  color: #2b2b2b;
  cursor: pointer;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-accept {
  background: #2f5b36;
  color: #fff;
}

.cookie-reject {
  background: #d6d0c4;
  color: #2b2b2b;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #4e4a44;
}

.footer-note {
  font-size: 12px;
  color: #5a554b;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}
