:root {
  --green-900: #102f1a;
  --green-700: #2d7044;
  --green-500: #3f8d57;
  --green-200: #b7e0b2;
  --line: #d9e8da;
  --ink: #163223;
  --ink-soft: #4f6a5a;
  --bg: #f7fcf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, #ebf7ec 0, transparent 35%),
    radial-gradient(circle at 85% 25%, #eef9f1 0, transparent 40%),
    var(--bg);
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 12px;
}

.card {
  width: min(760px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 47, 26, 0.12);
}

.hero-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.content {
  padding: clamp(20px, 4vw, 32px);
}

.badge {
  display: inline-flex;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2f6640;
  background: #e8f5ea;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
}

p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #c7ddcc;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-primary {
  background: linear-gradient(130deg, var(--green-700), var(--green-500));
  border-color: transparent;
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: #315f42;
}

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