.home-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #1f2937;
  line-height: 1.7;
}

.home-hero-title {
  font-size: 1.9rem;
  margin-bottom: 28px;
}

.home-wrap p {
  font-size: 1.05rem;
}

.home-link {
  color: #2563eb;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: underline;
}

/* Full-bleed screenshot: breaks out of the 760px wrapper to span the viewport width */
.home-figure {
  margin: 40px 0;
  text-align: center;
}

.home-screenshot {
  width: 100%;
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
/* ---------- Section headings ---------- */
.home-section-title {
  font-size: 1.3rem;
  margin: 40px 0 12px;
  color: #111827;
}

/* ---------- Data table ---------- */
.home-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.home-table th,
.home-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
}

.home-table thead th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.home-table-highlight td {
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
}

/* ---------- Steps & reasons lists ---------- */
.home-steps,
.home-reasons {
  padding-left: 24px;
  margin: 16px 0 24px;
}

.home-steps li,
.home-reasons li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* ---------- Volunteer form ---------- */
.home-form-card {
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.home-form-title {
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.home-form-subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0 0 24px;
}

.home-form-success {
  color: #16a34a;
  font-size: 1.05rem;
  margin: 0;
}

.home-field {
  margin-bottom: 20px;
}

.home-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

.home-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
  color: #1f2937;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-input::placeholder {
  color: #9ca3af;
}

.home-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

textarea.home-input {
  resize: vertical;
  min-height: 110px;
}

.home-submit {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.home-submit:hover {
  background: #1d4ed8;
}

.home-submit:active {
  background: #1e40af;
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .home-wrap {
    padding: 32px 18px;
  }

  .home-hero-title {
    font-size: 1.6rem;
  }

  .home-wrap p {
    font-size: 1rem;
  }

  .home-form-card {
    padding: 22px;
    border-radius: 14px;
  }

  .home-form-title {
    font-size: 1.2rem;
  }

  .home-figure {
    margin: 32px 0;
  }
  .home-section-title {
    font-size: 1.15rem;
    margin: 28px 0 10px;
  }

  .home-table {
    font-size: 0.88rem;
  }

  .home-table th,
  .home-table td {
    padding: 8px 10px;
  }
}