* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f1c;
  background: #f6f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #0f2b20;
  color: #f4f2eb;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand p {
  font-size: 0.95rem;
  color: rgba(244, 242, 235, 0.75);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(244, 242, 235, 0.2);
}

.sidebar-cta {
  background: #f4f2eb;
  color: #0f2b20;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 28px 20px 90px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section h2 {
  font-size: 1.6rem;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 43, 32, 0.9), rgba(28, 73, 54, 0.8));
  color: #f4f2eb;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b1f1c;
  color: #f4f2eb;
  font-weight: 600;
}

.button.light {
  background: #f4f2eb;
  color: #1b1f1c;
}

.button.ghost {
  background: transparent;
  border: 1px solid #f4f2eb;
  color: #f4f2eb;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 43, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.05rem;
}

.layered {
  background: #e4ede6;
  border-radius: 24px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: rgba(15, 43, 32, 0.15);
  border-radius: 50%;
}

.inline-cta {
  font-weight: 600;
  color: #0f2b20;
  border-bottom: 1px solid #0f2b20;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 31, 28, 0.2);
}

.service-item span {
  font-weight: 600;
}

.quote {
  background: #ffffff;
  border-left: 4px solid #0f2b20;
  padding: 16px;
  border-radius: 12px;
}

.form-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(27, 31, 28, 0.2);
  font-size: 0.95rem;
  background: #fdfdfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 24px 20px 60px;
  background: #0f2b20;
  color: #f4f2eb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #f4f2eb;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #1b1f1c;
  color: #f4f2eb;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #0f2b20;
  color: #f4f2eb;
}

.cookie-reject {
  background: #e4ede6;
  color: #0f2b20;
}

.wide-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(15, 43, 32, 0.1);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
}

.page-title {
  font-size: 2rem;
}

.policy {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
    padding: 40px 26px;
  }

  .content {
    padding: 40px 48px 100px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .wide-split {
    flex-direction: row;
    align-items: center;
  }

  .wide-split > * {
    flex: 1;
  }
}
