:root {
  --green-dark: #466454;
  --green-light: #A7BD90;
  --pink: #F3A7A2;
  --bg-soft: #EFF4F1;
  --bg-soft-2: #CCDBD4;
  --text: #2e2e2e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--pink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 6%;
  background: var(--bg-soft);
  border-bottom: 6px solid var(--bg-soft-2);
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.logo {
  max-width: 190px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.subtitle {
  font-size: 1.2rem;
  color: #4b4b4b;
  max-width: 42rem;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  border: 4px solid var(--bg-soft-2);
}

.section {
  padding: 4rem 6%;
}

.section.alt {
  background: var(--bg-soft);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.cta {
  padding: 4rem 6%;
  background: var(--green-dark);
  color: white;
  text-align: center;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: white;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-soft-2);
  font-size: 0.9rem;
}
