body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #faf7f4;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: #fff;
  background: none;
  max-width: 90%;
  text-wrap: balance;
}

.hero-text h1 {
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4em);
  color: #fff;
  white-space: nowrap;
}

.hero-text span {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
}

.content {
  max-width: 850px;
  margin: 40px auto 60px auto;
  padding: 0px 20px;
}

@media (max-width: 880px) {
  .hero {
    height: 300px;
  }

  .hero-text {
    bottom: 20px;
    left: 20px;
  }

  .hero-text h1 {
    font-size: clamp(1.6rem, 8vw, 2.5em);
  }

  .content {
    margin: 30px auto 50px auto;
  }

  .card {
    padding: 20px;
  }
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 25px 30px;
  margin-top: 30px;
}

.description-card {
  margin-top: 0;
}

.info {
  background: linear-gradient(135deg, #fff7f3, #ffece3);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 12px;
  font-size: 0.95em;
  color: #5a3a2e;
}

.info strong {
  color: #c44b2f;
  font-weight: 600;
}

h2 {
  color: #c44b2f;
  margin-top: 0;
  font-weight: 600;
}

/* Checklist */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.checklist input[type="checkbox"] {
  accent-color: #c44b2f;
  margin-right: 10px;
  transform: scale(1.3);
  cursor: pointer;
}

.checklist input[type="checkbox"]:checked + label,
.checklist input[type="checkbox"]:checked {
  color: #999;
  text-decoration: line-through;
}

label {
  cursor: pointer;
  user-select: none;
}

ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .hero {
    height: 300px;
  }

  .hero-text {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
  }

  .hero-text h1 {
    font-size: 1.8em;
  }

  .content {
    margin-top: 30px;
  }

  .card {
    padding: 20px;
  }
}
