* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f4aa8;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  background-color: #f1ede7;
  border-bottom: 1px solid #d8d1c8;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 14px;
  color: #6b5f53;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 60px 6% 120px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9c2b9;
  padding: 80px 8%;
  border-radius: 28px;
  color: #fdfbf8;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 44px;
  max-width: 640px;
  margin: 0;
}

.hero p {
  max-width: 600px;
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #2a2a2a;
  color: #fdfbf8;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.secondary {
  background-color: transparent;
  border-color: #fdfbf8;
  color: #fdfbf8;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d9d2c8;
  border-radius: 20px;
  overflow: hidden;
}

.panel .image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.highlight {
  background-color: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e2dbd2;
}

.service-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e4ded6;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .image-frame {
  border-radius: 0;
}

.service-card .image-frame img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f4aa8;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.list li {
  list-style: none;
  background-color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #ece6dd;
}

.form-wrap {
  background-color: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e2dbd2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc6bb;
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #2a2a2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

footer {
  padding: 40px 6% 80px;
  background-color: #1f1f1f;
  color: #f3f0ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f3f0ec;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #d8d1c8;
  padding: 16px 6%;
  display: none;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 36px;
  margin: 0 0 10px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 6%;
  }

  .hero h2 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
