* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  background-color: #e9dfd0;
  color: #4a3f35;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 6% 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 360px;
}

.hero-heading {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #1f4734;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #173425;
}

.link-action {
  border-bottom: 1px solid #1f4734;
  padding-bottom: 2px;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background-color: #f0ece4;
}

.section-dark {
  background-color: #213428;
  color: #f7f5f1;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d7d0c7;
}

.price {
  font-weight: 700;
  color: #1f4734;
}

.offset-block {
  align-self: flex-start;
  max-width: 620px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d7d0c7;
}

.bg-field {
  background-color: #273a2f;
  background-image: url("https://images.unsplash.com/photo-1474511320723-9a56873867b5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-field .offset-block {
  background-color: rgba(32, 46, 36, 0.9);
  color: #ffffff;
}

.bg-stable {
  background-color: #1f2d26;
  background-image: url("https://images.unsplash.com/photo-1472396961693-142e6e269027?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-stable .offset-block {
  background-color: rgba(24, 34, 28, 0.9);
  color: #ffffff;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3cdc4;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background-color: #1c221f;
  color: #e6e1d7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.95rem;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 6%;
  background-color: #1f4734;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  background-color: #173425;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5efe6;
  padding: 18px 6%;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.banner-actions {
  display: flex;
  gap: 12px;
}

.banner button {
  background-color: #1f4734;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.banner button:hover {
  transform: translateY(-1px);
  background-color: #173425;
}

.banner .reject {
  background-color: #6b6156;
}

.plain-section {
  max-width: 880px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  max-width: 620px;
}
