* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a2e;
  background: #f5f4f1;
}

a {
  color: #1b5f5a;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f1c1b;
  color: #f6f4ef;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #1a2d2c;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  color: #e4eee9;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4c95d;
  color: #1a1d1a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background: #f7efe2;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1b5f5a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-image {
  flex: 1;
  background-color: #d8cbb7;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
}

.split-media {
  background-color: #dfe6e1;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(17, 25, 24, 0.08);
}

.card-image {
  background-color: #e6ddd2;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.section-title {
  font-size: 26px;
  margin: 0 0 16px;
}

.accent-section {
  background: #132826;
  color: #f2f4f0;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accent-section a {
  color: #f4c95d;
  font-weight: 600;
}

.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: #1c3432;
  padding: 16px;
  border-radius: 16px;
}

.form-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-section form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section label {
  font-weight: 600;
  font-size: 14px;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d4cd;
  font-size: 15px;
}

.form-section button {
  padding: 12px 16px;
  background: #1b5f5a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.form-aside {
  flex: 0.8;
  background-color: #f3ede4;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-aside img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.footer {
  border-top: 1px solid #d8d3ca;
  padding-top: 24px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  color: #5b5a58;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: #f4c95d;
  color: #1a1d1a;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 25, 24, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 25, 24, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #1b5f5a;
  background: #ffffff;
  color: #1b5f5a;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: #1b5f5a;
  color: #ffffff;
}

.plain-section {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.contact-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #f4efe7;
  padding: 18px;
  border-radius: 16px;
}

.notice {
  font-size: 13px;
  color: #6a6a66;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 32px 24px 80px;
  }

  .hero,
  .split,
  .form-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
