* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #0e1a25;
  background-color: #f6f7fb;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e8ee;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav a {
  text-decoration: none;
  color: #0e1a25;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c6b7a;
  padding: 4px 10px;
  border: 1px solid #d8dde6;
  border-radius: 999px;
}

.section {
  padding: 70px 6%;
  position: relative;
}

.section.alt {
  background-color: #ffffff;
}

.section.deep {
  background-color: #0e1a25;
  color: #f4f6f8;
}

.section.soft {
  background-color: #e9edf3;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
  align-self: center;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 280px;
  background-color: #cdd8e5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.offset-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 27, 40, 0.08);
}

.offset-card.shift-up {
  margin-top: -28px;
}

.offset-card.shift-down {
  margin-top: 28px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.media-row .copy {
  flex: 1 1 320px;
}

.media-row .image-box {
  flex: 1 1 300px;
  background-color: #cfd8e4;
  border-radius: 20px;
  overflow: hidden;
}

.media-row .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.card {
  flex: 1 1 250px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(16, 27, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .card-media {
  background-color: #c9d5e3;
  border-radius: 14px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.tagline {
  font-size: 0.92rem;
  color: #516173;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #0e1a25;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.btn.light {
  background-color: #ffffff;
  color: #0e1a25;
  border: 1px solid #ced6e2;
}

.inline-link {
  color: #1c4f8c;
  text-decoration: underline;
}

.divider {
  height: 1px;
  background-color: #d8dde6;
  margin: 24px 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e1e6ed;
}

.list-item span {
  font-weight: 600;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(16, 27, 40, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

select,
input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd6e0;
  font-size: 1rem;
}

.footer {
  padding: 30px 6%;
  background-color: #0e1a25;
  color: #dce2ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #dce2ea;
  text-decoration: none;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #ffffff;
  border: 1px solid #d5dbe4;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px rgba(16, 27, 40, 0.12);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0e1a25;
  color: #f6f7fb;
  padding: 18px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #f0b429;
  color: #0e1a25;
}

.cookie-actions .reject {
  background-color: #ffffff;
  color: #0e1a25;
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.simple-section {
  padding: 50px 6%;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(16, 27, 40, 0.08);
}
