* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2329;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1f4b75;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px 16px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #4a5966;
  max-width: 240px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 24px 60px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.9), rgba(245, 236, 221, 0.92)), url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80") center/cover no-repeat;
  border-radius: 24px;
  margin-bottom: 36px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  max-width: 620px;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1f4b75;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.button.secondary {
  background: #f2e1c6;
  color: #2a2f33;
}

.section {
  margin: 48px 0;
  padding: 32px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.section.alt {
  background: #f1ede7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #d5d8dc;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  font-size: 20px;
  font-weight: 600;
  color: #223344;
}

.micro-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(22, 34, 51, 0.08);
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 140px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  padding: 16px 18px;
  border-left: 3px solid #1f4b75;
  background: #fdfaf4;
  border-radius: 12px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  flex: 1 1 240px;
  background: #f7f3ec;
  padding: 18px;
  border-radius: 14px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(24, 35, 50, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: #1f4b75;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9cdd2;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: center;
  margin-top: 36px;
  z-index: 2;
}

.sticky-cta .button {
  background: #2d6a3f;
}

.footer {
  margin-top: 60px;
  padding: 28px 24px 40px;
  background: #11161c;
  color: #f6f4ef;
}

.footer a {
  color: #f6f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}

.references {
  font-size: 13px;
  margin-top: 18px;
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.notice {
  font-size: 14px;
  color: #3c4a57;
}

.page-title {
  font-size: 28px;
  margin: 24px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(21, 34, 50, 0.08);
}
