* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background: #faf8f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #f2e9e2;
  color: #4f3d36;
  padding: 10px 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: flex-end;
}

.ad-label {
  background: #e7d4c7;
  padding: 6px 10px;
  border-radius: 999px;
}

.header {
  padding: 18px 24px 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 4px 6px;
  border-radius: 6px;
  background: #f8efe8;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 24px 10px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-title {
  font-size: 2.3rem;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5c3d2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-image {
  flex: 1 1 320px;
  min-width: 280px;
  background: #f0e3d7;
  padding: 12px;
  border-radius: 18px;
}

.hero-image img {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 34px 24px;
}

.section.alt {
  background: #f7f1ec;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 14px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-article {
  flex: 1 1 320px;
  min-width: 280px;
}

.inline-image {
  background: #efe3d6;
  border-radius: 14px;
  padding: 10px;
  flex: 1 1 260px;
}

.inline-image img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.magazine-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(40, 28, 20, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #f1e2d7;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6ede6;
  color: #5d4033;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.trust-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(40, 28, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5c3d2e;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(44, 30, 22, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7bb;
  background: #fffdfb;
  font-size: 1rem;
}

.submit-btn {
  background: #a5572f;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 14px;
  right: 18px;
  background: #5c3d2e;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  background: #f2e9e2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal {
  font-size: 0.85rem;
  color: #5b4a44;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1a17;
  color: #fff;
  padding: 16px 24px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-accept {
  background: #f1c49c;
}

.cookie-reject {
  background: #ead8cd;
}

.page-hero {
  padding: 36px 24px 0;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.content-wrap {
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card .service-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thanks-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(44, 30, 22, 0.1);
}

.notice {
  background: #f7efe7;
  border-left: 4px solid #c88f6f;
  padding: 12px 14px;
}

.small {
  font-size: 0.9rem;
  color: #5d4d47;
}

@media (max-width: 720px) {
  .nav-links {
    margin-left: 0;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
