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

html, body {
  font-family: Georgia, serif;
  background: #f7f4ee;
  color: #2a2a2a;
}

/* ===== Sections ===== */
.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 24px;
}

/* ===== Variants ===== */
.light {
  background: #f7f4ee;
}

.green {
  background: #3f5a3e;
  color: #f7f4ee;
}

.photo {
  background: #3f5a3e;
  padding: 0;
}

/* ===== Content ===== */
.content {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

/* ===== Headings ===== */
h1 {
  font-size: 48px;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

/* ===== Text ===== */
p {
  font-size: 18px;
  line-height: 1.6;
}

.green p {
  margin-bottom: 12px;
}

/* ===== Step (как h1 по ощущению) ===== */
.step {
  margin-bottom: 32px;
  font-size: 40px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: rgba(247, 244, 238, 0.85);
}

/* ===== Image ===== */
.photo img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* ===== Button ===== */
button {
  margin-top: 32px;
  padding: 16px 40px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

/* ===== Telegram link (НЕ СИНЯЯ, НЕ УЕБИЩНАЯ) ===== */
.green .tg-link {
  color: rgba(247, 244, 238, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 244, 238, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.green .tg-link:hover {
  color: #f7f4ee;
  border-bottom-color: rgba(247, 244, 238, 0.7);
}
