@import url("shared.css");

/* ================= INTRO (overrides on top of shared.css) ================= */
.intro {
  padding: 88px 0 60px;
}
.intro h2 {
  max-width: 26ch;
  margin-bottom: 18px;
}

/* ================= DOCUMENT CHECKLIST ================= */
.doc-section {
  padding: 56px 0;
}
.doc-section.alt {
  background: var(--grey-bg);
}
.doc-group-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 30px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.doc-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(0, 33, 71, 0.1);
}
.doc-item:last-child {
  border-bottom: none;
}
.doc-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--main);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.doc-text h4 {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.doc-text p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: #56575c;
  max-width: 56ch;
}
.doc-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(154, 128, 41, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ================= CONTACT CTA ================= */
.doc-contact-cta {
  padding: 70px 0 90px;
  text-align: center;
}
.doc-contact-cta p {
  font-family: var(--sans);
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 24px;
}
.doc-contact-btn {
  display: inline-block;
  background: var(--main);
  color: var(--text-light);
  border: 1.5px solid var(--main);
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.doc-contact-btn:hover {
  background: transparent;
  color: var(--main);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 560px) {
  .doc-item {
    gap: 14px;
  }
}
