* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1e4dd8;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1e4dd8;
  outline-offset: 2px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e4e0db;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0 16px;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  color: #5f5a55;
  max-width: 320px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 70px 0;
}

.hero .panel {
  background: rgba(16, 16, 16, 0.72);
  padding: 32px;
  border-radius: 18px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(30, 25, 20, 0.08);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #efebe6;
}

.section.banded {
  background-image: url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.banded .panel {
  background: rgba(255, 255, 255, 0.9);
  color: #1b1b1b;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #6a625a;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e4dd8;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1e4dd8;
  border: 1px solid #1e4dd8;
}

.btn.ghost {
  background: transparent;
  color: #1e4dd8;
  border: 1px dashed #1e4dd8;
}

.img-wrap {
  background-color: #cfc6bd;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(27, 27, 27, 0.08);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.testimonial {
  border-left: 3px solid #1e4dd8;
  padding-left: 18px;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6bd;
  font-size: 1rem;
  background: #ffffff;
}

.form-note {
  font-size: 0.9rem;
  color: #5f5a55;
}

footer {
  background: #ffffff;
  border-top: 1px solid #e4e0db;
  padding: 36px 0 44px;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  max-width: 360px;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.highlight-block {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.highlight-block .panel {
  background: rgba(20, 20, 20, 0.68);
  color: #ffffff;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 50px 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
