* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1f2a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background-color: #f6f4f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-ad {
  font-size: 0.85rem;
  background-color: #ece6df;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 20px;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.section.tint {
  background-color: #e9edf4;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-width: 280px;
}

.image-frame {
  background-color: #d9d3cb;
  border-radius: 18px;
  overflow: hidden;
}

.frame-xl {
  height: 440px;
}

.frame-lg {
  height: 420px;
}

.frame-md {
  height: 380px;
}

.frame-sm {
  height: 360px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  background-color: #1b1f2a;
  color: #ffffff;
  font-weight: 600;
}

.button.outline {
  background-color: transparent;
  border: 1px solid #1b1f2a;
  color: #1b1f2a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background-color: #ffffff;
  align-items: center;
}

.service-card .card-media {
  width: 120px;
  height: 90px;
  flex-shrink: 0;
  background-color: #dfe5ee;
  border-radius: 12px;
  overflow: hidden;
}

.service-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin: 0 0 6px;
}

.badge {
  display: inline-block;
  background-color: #f3ede6;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
}

.service-form select,
.service-form input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  font-size: 1rem;
}

.service-form button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  background-color: #1b1f2a;
  color: #f5f5f5;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer p {
  max-width: 720px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sticky-cta .button {
  padding: 10px 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.simple-image {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d7d7d7;
}

.simple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  min-width: 220px;
  flex: 1;
}

.legal-block {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
