* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: #1c4b8f;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid #e2ddd4;
  background: #fbfaf8;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a5d4d;
  background: #efe8df;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.accent {
  background: #f1eee9;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.1rem;
  color: #3e4b52;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.col-60 {
  flex: 1 1 60%;
  min-width: 280px;
}

.col-40 {
  flex: 1 1 35%;
  min-width: 240px;
}

.col-50 {
  flex: 1 1 48%;
  min-width: 260px;
}

.col-35 {
  flex: 1 1 32%;
  min-width: 220px;
}

.col-65 {
  flex: 1 1 62%;
  min-width: 300px;
}

.card {
  background: #ffffff;
  border: 1px solid #e6dfd4;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(38, 38, 38, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card .price {
  font-weight: 700;
  color: #1c4b8f;
}

.cta-button {
  background: #1c4b8f;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-outline {
  background: transparent;
  color: #1c4b8f;
  border: 1px solid #1c4b8f;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.image-frame {
  background: #d8d1c6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 45%;
  min-width: 260px;
  height: 320px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e6dfd4;
  flex: 1 1 160px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
}

.testimonial {
  padding: 16px 18px;
  border-left: 3px solid #1c4b8f;
  background: #ffffff;
}

.form-block {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e6dfd4;
}

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 #d6cec2;
  font-family: inherit;
}

footer {
  padding: 36px 6vw 48px;
  background: #1f2428;
  color: #f7f5f2;
}

footer a {
  color: #cdd9f3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e6dfd4;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-link {
  font-size: 0.9rem;
}

.inline-image {
  height: 220px;
}

.wide-image {
  height: 260px;
}

.tall-image {
  height: 320px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6dfd4;
}

.page-hero {
  padding: 36px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e6dfd4;
}

.page-hero .mag-row {
  align-items: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid .card {
  flex: 1 1 260px;
}

.note-box {
  background: #f3efe8;
  padding: 18px;
  border-radius: 14px;
  border: 1px dashed #c9c2b7;
}
