* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a33;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #0e4b6f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #e6e1dc;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: #162029;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0ebe4;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5c6066;
  max-width: 220px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 26px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-visual {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d8dfe6;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e4b6f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0e4b6f;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid #d9d2ca;
}

.split-section {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=800&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2a33;
  background-blend-mode: multiply;
  color: #ffffff;
}

.split-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe6de;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background: #162029;
  color: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece6df;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  background: #dbe2ea;
}

.price {
  font-weight: 700;
  color: #0e4b6f;
}

.form-section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c9;
  font-size: 14px;
  background: #fbfaf8;
}

.inline-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: #f0ebe4;
  padding: 10px 14px;
  border-radius: 999px;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 18px;
}

.footer {
  margin-top: 50px;
  padding: 30px 20px;
  background: #ffffff;
  border-top: 1px solid #e6e1dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffde9a;
  color: #3b2d06;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  border: 1px solid #e6e1dc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.accept-btn {
  background: #0e4b6f;
  color: #ffffff;
}

.reject-btn {
  background: #f0ebe4;
  color: #1f2a33;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}
