* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a24;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f0ebe2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
}

.ad-label {
  padding: 6px 10px;
  background: #2b4032;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw 40px;
  background: #f4efe6;
}

.hero-text,
.hero-image {
  flex: 1 1 360px;
}

.hero-image {
  min-height: 380px;
  background: #c9d6c5;
  border-radius: 24px;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn {
  background: #2b4032;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2b4032;
  color: #2b4032;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 60px 6vw;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background: #fff;
}

.split-text,
.split-media {
  flex: 1 1 340px;
}

.split-media {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #d2d6cc;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #506454;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #f7f4ef;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #d6d9d2;
}

.pricing {
  font-weight: 700;
  color: #2b4032;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw 80px;
  background: #f0ebe2;
}

.form-wrapper,
.form-aside {
  flex: 1 1 320px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd3c7;
  font-size: 1rem;
  background: #fff;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer {
  padding: 40px 6vw;
  background: #1f2a24;
  color: #f7f4ef;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: #f7f4ef;
}

.legal {
  font-size: 0.85rem;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-title {
  padding: 60px 6vw 20px;
}

.content {
  padding: 10px 6vw 60px;
  max-width: 1000px;
}

.notice {
  background: #e8efe5;
  border-left: 4px solid #2b4032;
  padding: 16px;
  border-radius: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.spacer {
  height: 20px;
}
