* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #0b3c49;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e2dc;
  padding: 18px 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b4a2f;
  background: #fff1cf;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 28px 10px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 48px 28px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 52%;
  min-width: 280px;
}

.split-media {
  flex: 1 1 48%;
  min-width: 260px;
  background: #d8d4cc;
  border-radius: 22px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #6d6d6d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #0b3c49;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.btn.secondary {
  background: #e6d7c6;
  color: #2b1d12;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  opacity: 0.92;
}

.inline-cta {
  font-weight: 600;
  color: #0b3c49;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 160px;
}

.card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #0b3c49;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccc3b4;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.message {
  font-size: 0.95rem;
  color: #3c5d4f;
}

.section-note {
  background: #f1efe9;
  padding: 16px 18px;
  border-radius: 14px;
}

.striped {
  background: #ffffff;
}

.highlight {
  background: #0b3c49;
  color: #ffffff;
}

.highlight .btn.secondary {
  background: #ffffff;
  color: #0b3c49;
}

.footer {
  margin-top: auto;
  padding: 36px 28px;
  background: #1d1a16;
  color: #f7f6f3;
}

.footer a {
  color: #f7f6f3;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #e5e2dc;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 120px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0b35b;
  color: #2d1d08;
  font-weight: 600;
  z-index: 9;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1656077917400-a955ba30cfe5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 73, 0.72);
}

.bg-panel .split-content,
.bg-panel .split-media {
  position: relative;
  z-index: 1;
}

.sticky-cta:hover,
.sticky-cta:focus {
  opacity: 0.9;
  text-decoration: none;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
