* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout {
  display: flex;
  flex-direction: column;
}

.sidebar {
  background: #efeae2;
  padding: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
  font-weight: 500;
}

.cta-mini {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fdfbf8;
  font-weight: 600;
  margin-top: 16px;
  align-self: flex-start;
}

.content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff8ef;
  padding: 24px;
  border-radius: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #1f1f1f;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f1f1f;
  color: #1f1f1f;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.quote {
  background: #1f1f1f;
  color: #fdfbf8;
  padding: 24px;
  border-radius: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid #e6dfd6;
}

.pricing-item:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
}

.form-section {
  background: #f1ece5;
  padding: 24px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d2c8;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #fdfbf8;
  padding: 24px;
}

.footer a {
  color: #fdfbf8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f7b267;
  color: #1f1f1f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.tag {
  display: inline-flex;
  background: #f7b267;
  color: #1f1f1f;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 40px 60px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
