* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f2ed;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f4b99;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 5vw;
  background: #fff;
  border-bottom: 1px solid #e2ddd6;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #5c4b3f;
  background: #f2e8db;
  padding: 4px 10px;
  border-radius: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #f0f4ff;
}

.hero {
  position: relative;
  background: #d7d2cb;
  padding: 90px 5vw 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: #1f4b99;
  color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: #1f4b99;
  border: 1px solid #1f4b99;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.section {
  padding: 70px 5vw;
}

.section.light {
  background: #fff;
}

.section.travel-bg {
  position: relative;
  background: #d8d0c6;
  overflow: hidden;
}

.section.travel-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.section.travel-bg > * {
  position: relative;
}

.magazine-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #fff7f0;
  border: 1px solid #eadfd4;
}

.card-img {
  background: #e7ded3;
  border-radius: 16px;
  overflow: hidden;
}

.img-fallback {
  background: #d6d0c8;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.image-block {
  background: #ddd7cf;
  border-radius: 22px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services .card {
  background: #f3f1ff;
}

.pricing {
  font-weight: 600;
  color: #2d2d2d;
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.highlight {
  background: #f0f7ef;
  border-radius: 20px;
  padding: 24px;
}

.form-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid #ece4da;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bc;
  font-size: 14px;
}

.footer {
  background: #121212;
  color: #f1efe9;
  padding: 50px 5vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #e6d6ff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eadfd4;
  flex: 1 1 260px;
}

.thanks-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #eadfd4;
  max-width: 600px;
}

.inline-note {
  background: #fff2e3;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-block;
}
