* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background-color: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #0e5d4e;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e3dfd9;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6b6f72;
  max-width: 260px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  background-color: #f0ece6;
  padding: 6px 10px;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6% 32px;
  background: #121917;
  color: #f7f5f2;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  background-color: #1f2a27;
  border-radius: 18px;
  overflow: hidden;
  max-width: 820px;
}

.hero-image img {
  width: 100%;
  height: 360px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background-color: #d86a2c;
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  background-color: #f7f5f2;
  color: #1f2428;
  border: 1px solid #e0d9d1;
}

.section {
  padding: 56px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background-color: #ffffff;
}

.section-dark {
  background-color: #1a2120;
  color: #f5f3ee;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-row > div {
  flex: 1 1 260px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: #f0e2d3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background-color: #fdfaf6;
  border-radius: 16px;
  border: 1px solid #e5dfd7;
}

.image-frame {
  background-color: #dcd4cb;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quote {
  padding: 24px;
  background-color: #f7efe6;
  border-left: 4px solid #d86a2c;
  border-radius: 12px;
  font-style: italic;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  flex: 1 1 220px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e0d9;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background-color: #fffaf3;
  border: 1px solid #ecdcc9;
}

.pricing-card span {
  font-weight: 700;
  color: #9c4215;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e7e2da;
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c7;
  font-size: 14px;
}

.footer {
  padding: 32px 6% 48px;
  background-color: #101514;
  color: #d9d4cc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer small {
  color: #b2ada6;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #0e5d4e;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border: 1px solid #e4ded6;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background-color: #0e5d4e;
  color: #fff;
}

.cookie-reject {
  background-color: #f0ece6;
  color: #1f2428;
}

.page-hero {
  padding: 46px 6% 24px;
  background-color: #f0ece6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-block {
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-content {
    flex: 1 1 320px;
  }

  .hero-image {
    flex: 1 1 360px;
  }

  .split {
    flex-direction: row;
  }
}
