* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #1c4d6b;
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #ffffff;
  padding: 24px;
  border-bottom: 1px solid #e5e0d8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  font-size: 0.95rem;
}

.sidebar-note {
  font-size: 0.85rem;
  color: #5a6b72;
}

main {
  flex: 1;
}

.hero {
  padding: 56px 24px 32px;
  background: linear-gradient(120deg, #fff9f2, #eff6f2);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.1rem;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #1c4d6b;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1c4d6b;
  border: 1px solid #1c4d6b;
}

.section {
  padding: 40px 24px;
  background: #ffffff;
}

.section--alt {
  background: #f0f4f7;
}

.section--warm {
  background: #fff5ec;
}

.section-title {
  margin-top: 0;
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split img {
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(27, 39, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing .card strong {
  font-size: 1.2rem;
}

.inline-cta {
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.testimonial {
  border-left: 4px solid #1c4d6b;
  padding-left: 14px;
  margin: 0;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(27, 39, 51, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd2d6;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #1b2b34;
  color: #e8eff2;
  padding: 32px 24px;
}

.footer a {
  color: #d7e9f3;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #f97316;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(27, 39, 51, 0.18);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9eef1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-placeholder {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  color: #475569;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    border-right: 1px solid #e5e0d8;
    border-bottom: none;
    min-height: 100vh;
    position: sticky;
    top: 0;
    align-self: flex-start;
  }

  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner > div,
  .split > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .cards .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .card {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-blocks {
    flex-direction: row;
  }

  .contact-blocks > div {
    flex: 1;
  }
}
