* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #17212b;
  background-color: #f5f7fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-bar {
  background-color: #0f1b24;
  color: #f5f7fa;
  padding: 18px 0;
}

.top-bar .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.85rem;
  color: #cdd7e1;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #cdd7e1;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #cdd7e1;
}

.hero {
  background-image: url("https://images.pexels.com/photos/22491857/pexels-photo-22491857.jpeg");
  background-size: cover;
  background-position: center;
  color: #f5f7fa;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 15, 20, 0.85), rgba(8, 15, 20, 0.2));
}

.hero-content {
  position: relative;
  padding: 60px 0 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: #e2edf6;
}

.page-hero {
  background-image: url("https://images.pexels.com/photos/37228154/pexels-photo-37228154.jpeg");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  color: #f5f7fa;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 20, 0.75);
}

.page-hero .container {
  position: relative;
}

.bg-layer {
  background-image: url("https://images.pexels.com/photos/37678718/pexels-photo-37678718.jpeg");
  background-size: cover;
  background-position: center;
  color: #f5f7fa;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background-color: #4dd0b6;
  color: #0c1c1e;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.button-outline {
  background-color: transparent;
  border: 1px solid #4dd0b6;
  color: #4dd0b6;
}

.section {
  padding: 30px 0;
}

.section.dark {
  background-color: #0f1b24;
  color: #f5f7fa;
}

.section.light {
  background-color: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 280px;
  background-color: #d9e3eb;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

.offset-block {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 27, 36, 0.12);
  margin-left: 12%;
}

.offset-block.alt {
  margin-left: 0;
  margin-right: 12%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 24px rgba(15, 27, 36, 0.08);
}

.card-image {
  background-color: #cdd7e1;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
}

.card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 600;
  color: #146a5d;
}

.inline-cta {
  color: #146a5d;
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 30px rgba(15, 27, 36, 0.08);
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd7e1;
  width: 100%;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: flex-end;
  padding: 0 4%;
}

.sticky-cta .button {
  background-color: #f8c046;
  color: #1e1b16;
}

.footer {
  background-color: #0f1b24;
  color: #cdd7e1;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #93a4b2;
}

.image-frame {
  background-color: #d9e3eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 27, 36, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn {
  background-color: #4dd0b6;
  color: #0c1c1e;
}

.reject-btn {
  background-color: #e6edf2;
  color: #0f1b24;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-grid > div {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.contact-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 24px rgba(15, 27, 36, 0.08);
}

.contact-card span {
  font-weight: 600;
}

.no-click {
  user-select: text;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.text-muted {
  color: #54606b;
}

@media (max-width: 900px) {
  .offset-block {
    margin-left: 0;
  }

  .offset-block.alt {
    margin-right: 0;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
