* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b4d7a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: #ece7df;
  border-bottom: 1px solid #d9d2c7;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6a6257;
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-image {
  flex: 1 1 420px;
  min-height: 320px;
  background: #d3d8df;
  border-radius: 16px;
  overflow: hidden;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0;
}

.column {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.column h3 {
  margin-bottom: 10px;
}

.inline-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #cbd5d8;
  margin-top: 16px;
}

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.magazine-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fdfcf9;
  border: 1px solid #e6e0d6;
  border-radius: 14px;
  padding: 16px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #d5d1cc;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b4d7a;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-link {
  font-weight: 600;
  color: #1b4d7a;
}

.section-band {
  margin: 40px 0;
  padding: 28px;
  border-radius: 16px;
  background: #eef0f3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.background-panel {
  margin: 40px 0;
  border-radius: 18px;
  padding: 28px;
  color: #ffffff;
  background-color: #1f2a38;
  background-image: url("https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-band.dark {
  background: #1f2a38;
  color: #f5f5f5;
}

.section-band .band-text {
  flex: 1 1 280px;
}

.section-band .band-image {
  flex: 1 1 280px;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #b8c1ca;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b9;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 5;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ef6c3b;
  color: #ffffff;
  font-weight: 600;
}

.footer {
  margin-top: 50px;
  padding: 28px 24px;
  background: #e6e0d6;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .reference-list a {
  color: #1b4d7a;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.simple-section {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: none;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1b4d7a;
  color: #ffffff;
}

.cookie-reject {
  background: #e5e0d8;
  color: #1c1c1c;
}

@media (max-width: 820px) {
  .top-nav {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
