* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background: #f8f6f2;
  line-height: 1.6;
}

a {
  color: #1b4d63;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0e7dc;
  font-size: 0.85rem;
}

.hero {
  padding: 40px 0 70px;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 60px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-frame {
  background: #d9d2c6;
  border-radius: 18px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-highlight {
  background: #eef3f2;
}

.section-image-bg {
  background-color: #e8dfd2;
  background-image: url("https://images.unsplash.com/photo-1505765050516-f72dcac9c60e?w=1400&q=80");
  background-position: center;
  background-size: cover;
  color: #0f1d26;
}

.section-image-bg .split-content {
  background: rgba(248, 246, 242, 0.9);
  padding: 24px;
  border-radius: 16px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .image-frame {
  border-radius: 12px;
  max-width: none;
}

.price {
  font-weight: 700;
  color: #1b4d63;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid #1b4d63;
  background: #1b4d63;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1b4d63;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.inline-cta {
  font-weight: 600;
  color: #0f1d26;
}

.testimonial {
  padding: 16px;
  border-left: 4px solid #1b4d63;
  background: #f7f1e8;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c1b6;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.footer {
  background: #0f1d26;
  color: #f8f6f2;
  padding: 36px 0;
  margin-top: 40px;
}

.footer a {
  color: #f8f6f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0 30px;
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
