* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f23;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1b4d73;
  text-decoration: none;
}

a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b4d73;
  color: #fff;
  font-weight: 600;
  border: none;
}

a.btn.secondary {
  background: #e6d5c3;
  color: #1f2a33;
}

.text-link {
  font-weight: 600;
  border-bottom: 1px solid #1b4d73;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1b4d73;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f6f3ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  max-width: 220px;
  text-align: right;
  color: #5a4a3d;
}

.container {
  padding: 0 6vw;
}

.magazine-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 40px 6vw;
  flex-wrap: wrap;
}

.hero {
  padding-top: 24px;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 420px;
  max-width: 640px;
}

.media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #d9c5b3;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-strip .info-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 220px;
}

.story-block {
  background: #fff;
}

.story-text {
  flex: 1 1 340px;
  max-width: 520px;
}

.story-media {
  flex: 1 1 320px;
  max-width: 420px;
}

.bg-section {
  background: #2d3b42;
  color: #fdfbf9;
  position: relative;
  overflow: hidden;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.trust-section::before {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.bg-section .container,
.bg-section .trust-content {
  position: relative;
  z-index: 1;
}

.trust-section {
  padding: 50px 0;
}

.trust-section .stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-section .stat {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  border-radius: 14px;
  flex: 1 1 200px;
}

.services-preview {
  background: #f0e5d8;
}

.services-preview .intro {
  flex: 1 1 260px;
  max-width: 340px;
}

.service-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex: 2 1 480px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #d9c5b3;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 16px;
}

.pricing-note {
  padding: 32px 6vw;
  background: #fff;
}

.form-section {
  background: #efe7de;
}

.form-wrap {
  flex: 1 1 380px;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.form-side {
  flex: 1 1 260px;
  max-width: 360px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdbfb0;
  font-size: 1rem;
  background: #fbfaf8;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.page-hero {
  background: #fff;
  padding: 40px 6vw;
}

.page-content {
  padding: 30px 6vw 50px;
}

.two-column {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.two-column .column {
  flex: 1 1 300px;
}

.list-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b4d73;
}

.contact-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.footer {
  background: #1f2a33;
  color: #f5f3ef;
  padding: 40px 6vw;
}

.footer a {
  color: #f5f3ef;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer .column {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #e3d6c9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 6;
}

.sticky-cta a {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .ad-label {
    text-align: left;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
