*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1a4d6b;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a5f52;
  max-width: 240px;
  text-align: right;
}

.hero {
  position: relative;
  padding: 90px 0 110px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 29, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a4d6b;
  background: #1a4d6b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 20px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.column {
  flex: 1 1 280px;
}

.column.wide {
  flex: 2 1 420px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 28px rgba(15, 19, 24, 0.08);
}

.card .price {
  font-weight: 700;
  color: #1a4d6b;
}

.media {
  background-color: #d8d0c6;
  border-radius: 16px;
  overflow: hidden;
}

.quote {
  padding: 20px;
  border-left: 4px solid #1a4d6b;
  background: #f4f0ea;
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c1b6;
  font-size: 1rem;
  background: #fdfaf7;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a4d6b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(15, 19, 24, 0.18);
}

.footer {
  padding: 40px 0 70px;
  background: #1f1f1f;
  color: #efe7dc;
}

.footer a {
  color: #efe7dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d6cbbf;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 20;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 19, 24, 0.18);
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid #1a4d6b;
  background: #1a4d6b;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1a4d6b;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
}

.table-row span {
  flex: 1 1 180px;
}

.spaced-row {
  margin-top: 24px;
}

.page-contact .map-note {
  font-weight: 600;
  color: #1a4d6b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
}

.section-image {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.section-image .media {
  flex: 1 1 260px;
}

.section-image .text {
  flex: 1 1 260px;
}

.notice {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5ded4;
}

.page-home .hero {
  background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1400&q=80");
}

.page-about .hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.page-services .hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.page-contact .hero {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .hero {
    padding: 70px 0 80px;
  }
}
