/* General Layout */
.doc-hero {
  background-color: #ffffff;
  padding: 2.5rem;
  margin: 2rem auto;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 850px;
}

.doc-hero h2 {
  color: #00588f;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.doc-hero p {
  font-size: 1.1rem;
  color: #333;
}

/* Section Styles */
.doc-section {
  max-width: 850px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.doc-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #00588f;
  margin-bottom: 0.8rem;
}

.doc-section p,
.doc-section ul,
.doc-section ol {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.doc-section ul,
.doc-section ol {
  padding-left: 1.5rem;
}

/* Logout Button */
.logout-button {
  background-color: #00588f;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.logout-button:hover {
  background-color: #e56f00;
  transform: translateY(-1px);
}