* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #111318;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 22px 6%;
  background: #f2ede6;
  border-bottom: 1px solid #e2d8cc;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: #dfe9f4;
  color: #1b2d4a;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 42px 6% 36px;
  background: #efe7dc;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-media {
  flex: 1 1 300px;
  min-height: 260px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d5dbe4;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-media img {
  position: relative;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  border: 1px solid #2f3d52;
  background: #2f3d52;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #2f3d52;
}

.btn:hover {
  background: #1f2a3a;
}

.btn.secondary:hover {
  background: #e6edf5;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 36px 6%;
}

.section.alt {
  background: #f2efe9;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.column-main {
  flex: 2 1 380px;
}

.column-side {
  flex: 1 1 220px;
}

.inline-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #dce3ea;
}

.inline-image img {
  width: 100%;
  height: 260px;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.metric {
  flex: 1 1 160px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e6ded3;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e6ded3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #d9e1e7;
}

.card-image img {
  width: 100%;
  height: 140px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.section-bg .overlay {
  background: rgba(10, 19, 30, 0.72);
  padding: 32px;
  border-radius: 18px;
}

.form-section {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e3d8cb;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9cfd9;
  font-size: 1rem;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #20405c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
}

.floating-cta:hover {
  background: #182f44;
}

.footer {
  margin-top: auto;
  background: #ece6dd;
  padding: 28px 6%;
  border-top: 1px solid #ddd2c6;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1d2430;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #f6d47f;
  color: #222;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: #95a4b6;
  color: #111;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e6ded3;
}

.legal-content {
  max-width: 860px;
}
