* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1f23;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1c7;
  border: 1px solid #e2c978;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split > * {
  flex: 1 1 320px;
}

.hero {
  padding: 24px 0 8px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-media {
  border-radius: 24px;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-color: #d9dfe5;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.hero-media p {
  background: rgba(28, 31, 35, 0.75);
  padding: 12px 16px;
  border-radius: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1c1f23;
  font-weight: 600;
  background: #1c1f23;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #1c1f23;
}

.link-inline {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section p {
  margin-bottom: 12px;
}

.media-card {
  background: #f0eee8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e3e0d8;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e0d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1c1f23;
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e3e0d8;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3d0c8;
  font-size: 15px;
  background: #fff;
}

.footer {
  padding: 40px 0 60px;
  background: #15171a;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  margin-top: 16px;
}

.footer small {
  color: #b7b7b7;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.legal-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e3e0d8;
}

.page-hero {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero img {
  width: 320px;
  height: 220px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3e0d8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e3e0d8;
}

.references {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.background-band {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-band .legal-card {
  background: rgba(255, 255, 255, 0.92);
  color: #1c1f23;
}

.background-about {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-about .legal-card {
  background: rgba(255, 255, 255, 0.92);
  color: #1c1f23;
}
