* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f7f4f0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #131722;
  color: #f6f2ea;
  padding: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(125deg, rgba(7, 60, 89, 0.92), rgba(14, 18, 30, 0.88)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f5ef;
  padding: 46px 28px;
  border-radius: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  font-size: 16px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f4b83e;
  color: #231f1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f6f2ea;
  color: #1b1f24;
}

.btn.dark {
  background: #131722;
  color: #f6f2ea;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.08);
}

.section.alt {
  background: #f0ebe4;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .image-card {
  border-radius: 14px;
  overflow: hidden;
}

.quote {
  font-style: italic;
  padding: 14px;
  background: #f5efe7;
  border-radius: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: #f9f7f2;
  border: 1px solid #e3dcd2;
}

.card img {
  border-radius: 10px;
  height: 160px;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #131722;
  color: #f9f5ef;
  font-size: 12px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #0d3e3a;
}

.form-wrapper {
  background: #131722;
  color: #f9f5ef;
  padding: 20px;
  border-radius: 16px;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ced1d6;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0f6e5c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(12, 23, 28, 0.28);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 25px rgba(8, 12, 20, 0.2);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 18px 24px;
  font-size: 14px;
  background: #131722;
  color: #f6f2ea;
}

.footer a {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
  }

  .content {
    padding: 36px 48px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
