* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1a4d78;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e1ddd8;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4d42;
  background: #efe7dd;
  padding: 6px 10px;
  border-radius: 20px;
}

main {
  padding: 32px 6% 80px;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 48px;
}

.hero-text {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 14px 30px rgba(16, 22, 35, 0.08);
}

.hero-media {
  flex: 1 1 50%;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d2cb;
  display: flex;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #1a4d78;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: #efe7dd;
  color: #3a2e26;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
}

.split .visual {
  flex: 1 1 50%;
  border-radius: 16px;
  overflow: hidden;
  background: #d6dbe0;
  min-height: 260px;
}

.split .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 36px 0;
}

.pillar-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(20, 26, 35, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #e4e1de;
}

.highlight {
  background: #1a4d78;
  color: #ffffff;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-bg {
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-bg.first {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.section-bg.second {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  align-items: center;
}

.service-row img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  background: #e2dcd6;
}

.service-info {
  flex: 1 1 240px;
}

.price {
  font-weight: 700;
  color: #1a4d78;
  font-size: 1.05rem;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  margin-top: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d0c8;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-note {
  font-size: 0.92rem;
  color: #534b42;
}

footer {
  background: #ffffff;
  padding: 30px 6%;
  border-top: 1px solid #e1ddd8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-grid div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-block;
  background: #3a2e26;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e1ddd8;
  padding: 16px 6%;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

#cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-header {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-block {
  background: #d8d2cb;
  border-radius: 18px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #51483f;
  text-align: center;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 70px;
  }
}
