.page-header {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.header-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(70%) contrast(110%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.header-text {
  flex: 1;
  min-width: 250px;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #666;
  margin: 0;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Georgia, serif;
  line-height: 1.6;
  background-color: #fdfdfc;
  color: #333;
}

h1, h2 {
  font-family: 'Merriweather', serif;
  color: #2c2c2c;
  margin-top: 2rem;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: #005a8d;
  text-decoration: underline;
}

section {
  margin-bottom: 2.5rem;
}

.submit-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* A nice blue color */
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px; /* Rounded corners */
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* A smooth color change on hover */
}

.submit-button:hover {
  background-color: #0056b3; /* A darker blue on hover */
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 3em;
    text-align: left; /* Ensure H1s are left-aligned by default */
    color: var(--primary-color, #333); /* Use fallback color if --primary-color isn't defined */
    margin-top: 1em;
    margin-bottom: 0.5em; /* A slightly smaller bottom margin for H1s */
}

@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
}

