:root {
  --cream: #FAF7F2;
  --warm-grey: #6B6660;
  --deep-teal: #1F5F5B;
  --max-width: 68ch;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--cream);
  color: var(--warm-grey);
  line-height: 1.6;
  padding: 0 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--deep-teal);
}

h2 {
  font-size: 2rem;
  color: var(--deep-teal);
}

h3 {
  font-size: 1.5rem;
  color: var(--warm-grey);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--deep-teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  background-color: var(--deep-teal);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #1a4a47;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.steps {
  display: grid;
  gap: 3rem;
  margin: 4rem 0;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  font-weight: 700;
  color: var(--deep-teal);
}

.privacy-block {
  background-color: rgba(31, 95, 91, 0.1);
  padding: 2rem;
  border-radius: 8px;
  margin: 4rem 0;
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 102, 96, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
  }
}
