* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a30;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #e6e0d8;
  color: #3a2f2a;
  padding: 6px 10px;
  border-radius: 16px;
}

.section {
  padding: 64px 0;
}

.section.tight {
  padding: 40px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.hero {
  background-color: #efe8e1;
}

.hero .title {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero .lead {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #2c3b44;
  background: #2c3b44;
  color: #f7f5f2;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #2c3b44;
}

.text-link {
  border-bottom: 1px solid #2c3b44;
  padding-bottom: 2px;
}

.image-frame {
  background-color: #d6cdc4;
  border-radius: 20px;
  overflow: hidden;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #2c3b44;
}

.inline-testimonial {
  font-style: italic;
  background: #f0ebe4;
  padding: 16px;
  border-radius: 14px;
}

.bg-econ-1 {
  background-image: url("https://images.pexels.com/photos/5833841/pexels-photo-5833841.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(20, 24, 28, 0.72);
  padding: 56px;
  border-radius: 24px;
}

.form-area {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b8;
  font-size: 1rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-item {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.service-item .details {
  flex: 1 1 280px;
}

.footer {
  border-top: 1px solid #d9d0c7;
  padding: 28px 0 40px;
  font-size: 0.9rem;
  color: #3f4b51;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.note {
  background: #f0ebe4;
  padding: 16px;
  border-radius: 14px;
}

.note.spaced {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .bg-overlay {
    padding: 32px;
  }
}
