* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #d9d8d3;
}

a {
  color: #1f3a8a;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6%;
  background: #f0efe9;
  border-bottom: 1px solid #e1dfd6;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #4c4f5c;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 6% 50px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e9eef5;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d7ddea;
  z-index: -1;
}

.hero-content {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 280px;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  background: #d9d8d3;
  padding: 12px;
  border-radius: 18px;
  max-width: 420px;
}

.hero-image img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #1f3a8a;
  background: #1f3a8a;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #1f3a8a;
}

.section {
  padding: 52px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background: #ffffff;
}

.section-offset {
  margin-left: 4%;
  margin-right: 8%;
  border-left: 4px solid #1f3a8a;
  padding-left: 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fdfcf9;
  border-radius: 18px;
  border: 1px solid #ece8dd;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #d9d8d3;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price {
  font-size: 1.2rem;
  color: #1f3a8a;
  font-weight: 600;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.inline-media img {
  width: 280px;
  height: 200px;
  border-radius: 16px;
}

.quote {
  font-style: italic;
  background: #e9eef5;
  padding: 16px;
  border-radius: 14px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #ece8dd;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c8c0;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  background: #1f2430;
  color: #f2f2ef;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d5defd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #c9c8c0;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-header {
  padding: 50px 6% 30px;
  background: #eef1f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-content {
  padding: 30px 6% 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ece8dd;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #1f3a8a;
}
