* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f4b6e;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6%;
  background-color: #fff;
  border-bottom: 1px solid #e4e1dc;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d4b39;
  background-color: #f1e7db;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6% 20px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  background-color: #d5dbe3;
  border-radius: 18px;
  overflow: hidden;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f4b6e;
  background-color: #1f4b6e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.secondary-button {
  background-color: transparent;
  color: #1f4b6e;
}

.section {
  padding: 36px 6%;
}

.section-dark {
  background-color: #1f2e3a;
  color: #f5f5f5;
}

.section-light {
  background-color: #fff;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.magazine-column {
  flex: 1 1 280px;
  background-color: #fdfaf6;
  padding: 20px;
  border-radius: 16px;
}

.magazine-column.image-card {
  padding: 0;
  background-color: #d8d0c5;
  overflow: hidden;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ece6dd;
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f4b6e;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #f1e7db;
  border-radius: 18px;
}

.form-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5ded4;
  max-width: 620px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6b9;
  font-size: 1rem;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-column > div {
  flex: 1 1 260px;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background-color: #10161c;
  color: #e9e4db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #e9e4db;
}

.cta-sticky {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f4b6e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.cta-sticky a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background-color: #fff;
  border: 1px solid #e4e1dc;
  border-radius: 16px;
  padding: 16px;
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image {
  background-color: #d8d0c5;
  border-radius: 16px;
  overflow: hidden;
}

.note-box {
  background-color: #f7f1e9;
  border-left: 4px solid #1f4b6e;
  padding: 14px 18px;
  border-radius: 12px;
}
