* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 6%;
  background-color: #f7f6f3;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a6a73;
  max-width: 280px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d3cb;
  padding: 90px 6% 80px;
}

.hero-inner {
  max-width: 720px;
  background-color: rgba(247, 246, 243, 0.92);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid #1f2a33;
  background-color: #1f2a33;
  color: #f7f6f3;
  font-weight: 600;
}

.button.secondary {
  background-color: transparent;
  color: #1f2a33;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background-color: #ffffff;
}

.section.split {
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
}

.text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-frame {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #e2ded6;
  padding: 14px;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.image-frame.card-image img {
  height: 180px;
}

.image-frame.small img {
  width: 140px;
  height: 140px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 10px;
}

.story-card {
  background-color: #f1efe9;
  padding: 22px;
  border-left: 4px solid #1f2a33;
}

.pillars {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.pillar {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 18px;
  border: 1px solid #d8d5ce;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d4d1c9;
  color: #f7f6f3;
}

.background-panel .overlay {
  background-color: rgba(31, 42, 51, 0.7);
  padding: 50px 6%;
}

.testimonial {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.testimonial img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border: 1px solid #d8d5ce;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card img {
  width: 100%;
  height: 180px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #d8d5ce;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c9c5bd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f2a33;
  color: #f7f6f3;
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta a {
  color: #f7f6f3;
  font-weight: 600;
}

.footer {
  padding: 40px 6%;
  background-color: #1f2a33;
  color: #f7f6f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d7dfe3;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #d8d5ce;
  padding: 16px 6%;
  display: none;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #1f2a33;
  background-color: #1f2a33;
  color: #f7f6f3;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1f2a33;
}

.notice {
  background-color: #f1efe9;
  padding: 16px;
  border-left: 4px solid #1f2a33;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero {
    padding: 70px 6% 60px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6%;
    border-radius: 6px;
  }
}
