* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b2328;
  background: #f6f7f8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  background: #f6f7f8;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #e6eef2;
  color: #1a303b;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 100px 6vw 80px;
  background: #1f2a2f;
  color: #f7f7f7;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/36279736/pexels-photo-36279736.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero-card {
  position: relative;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f7c948;
  color: #1b2328;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #e6eef2;
}

.section {
  padding: 80px 6vw;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1a242a;
  color: #f6f7f8;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1 1 320px;
  background: #dfe7ec;
  border-radius: 24px;
  overflow: hidden;
}

.content-box {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(19, 33, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #1a303b;
}

.offset-block {
  margin-top: -40px;
  background: #f7f4ef;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(22, 34, 40, 0.12);
}

.background-panel {
  background-color: #1a242a;
  background-image: url("https://images.pexels.com/photos/5623006/pexels-photo-5623006.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 31, 0.65);
}

.background-panel .panel-content {
  position: relative;
  padding: 48px;
  color: #f6f7f8;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(19, 33, 40, 0.1);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d4da;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #10171b;
  color: #c6d0d6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #f7c948;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(19, 33, 40, 0.2);
  padding: 18px;
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-section {
  padding: 70px 6vw;
}

.simple-section .content-box {
  max-width: 720px;
}

.mini-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.icon-tile {
  flex: 1 1 200px;
  background: #f1f3f4;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon {
  width: 36px;
  height: 36px;
  background: #1a303b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 32px rgba(19, 33, 40, 0.08);
  flex: 1 1 260px;
}

@media (max-width: 720px) {
  .hero {
    padding: 80px 6vw 60px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 88px;
  }
}
