* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f6f4ef;
}

a {
  color: #1f5f3b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background-color: #f1efe7;
  border-bottom: 1px solid #ded9cf;
}

.topbar nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  background: #e4efe8;
  color: #1f5f3b;
  padding: 6px 12px;
  border-radius: 999px;
}

.shell {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 60px);
}

.sidebar {
  width: 260px;
  background-color: #ffffff;
  border-right: 1px solid #e3ded4;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar small {
  color: #4b5a51;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  padding: 16px;
  background: #f2f7f1;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.split {
  flex-direction: row;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.split-block {
  flex: 1 1 320px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.hero .copy {
  flex: 1 1 320px;
}

.hero .hero-media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 14px;
}

.highlight {
  background: #fef6e8;
  padding: 18px 20px;
  border-radius: 16px;
}

.image-frame {
  background-color: #dfe8de;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img,
.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  background: #1f5f3b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
.btn:focus {
  background: #17452b;
}

.btn-ghost {
  background: transparent;
  color: #1f5f3b;
  border: 1px solid #1f5f3b;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: #e8f0eb;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.card .card-media {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #dfe8de;
}

.card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #1f5f3b;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #e9f1ea;
  color: #1f5f3b;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cdd7cf;
  font-family: inherit;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 32px;
  color: #ffffff;
  border-radius: 20px;
}

.bg-section .highlight {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 200px;
}

footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #ded9cf;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  flex: 1 1 220px;
}

.text-link {
  font-weight: 600;
}

@media (max-width: 980px) {
  .shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }

  .main {
    padding: 28px;
  }
}
