* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f4f6f7;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1f4d5a;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  background-color: #ffffff;
  padding: 20px 6%;
  border-bottom: 1px solid #e2e7e9;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5c6b70;
  background-color: #f0f3f4;
  padding: 6px 12px;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 70px 6%;
}

.section-light {
  background-color: #ffffff;
}

.section-muted {
  background-color: #e7edf0;
}

.section-dark {
  background-color: #1f2a2e;
  color: #f4f6f7;
}

.split {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media {
  background-color: #cfd8dc;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.media img {
  width: 100%;
  height: 100%;
}

.hero {
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

button,
.button-link {
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  background-color: #1f4d5a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.button-outline {
  background-color: transparent;
  color: #1f4d5a;
  border: 2px solid #1f4d5a;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1f4d5a;
  padding-bottom: 2px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  background-color: #f7fafb;
  padding: 16px 18px;
  border-radius: 12px;
}

.pricing-item span {
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.08);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background-color: #cfd8dc;
  min-height: 180px;
}

.card .card-media img {
  width: 100%;
  height: 180px;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.quote-form label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd5d8;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  font-size: 0.95rem;
  color: #1f4d5a;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background-color: #ffb443;
  color: #1f2a2e;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bg-route {
  background-color: #1f2a2e;
  background-image: url("https://images.pexels.com/photos/29008438/pexels-photo-29008438.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.6);
}

.bg-route .overlay-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.footer {
  background-color: #10171a;
  color: #e6ecee;
  padding: 50px 6%;
}

.footer a {
  color: #e6ecee;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.cookie-actions .reject {
  background-color: #e4ecef;
  color: #1f2a2e;
}

.notice {
  background-color: #f0f3f4;
  padding: 12px 16px;
  border-radius: 12px;
}

.legal-content {
  max-width: 860px;
}

.contact-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.08);
  max-width: 720px;
}

.small-text {
  font-size: 0.92rem;
  color: #5c6b70;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
