.static-page-container {
  padding: 4rem 1rem;
  background-color: #fafafa;
  min-height: 80vh;
}

.static-card {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.static-card h1 {
  font-family: 'Verdana', sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center !important;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 1rem;
}

.static-card h2 {
  font-family: 'Verdana', sans-serif;
  font-size: 1.5rem;
  color: #444;
  margin: 2rem 0 1rem;
}

/* Override conflicts from contacts.css */
.static-card p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  line-height: 1.8 !important;
  color: #555 !important;
  margin-bottom: 0.8rem !important;
  font-size: 1.1rem !important;
  width: 100% !important; /* Overrides the 40vw from contacts.css */
  text-align: center !important; /* Force center for all P tags in static cards */
  margin-left: auto !important;
  margin-right: auto !important;
}

.static-card ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  text-align: left !important; /* Lists usually look better left-aligned even in centered cards */
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.static-card li {
  margin-bottom: 0.5rem;
  color: #555;
  list-style-type: disc;
}

.static-card a {
  color: #4A4A4A;
  text-decoration: underline;
}

.static-card a:hover {
  color: #000;
}

.last-updated {
  font-style: italic;
  color: #888;
  text-align: center !important;
  margin-bottom: 2rem;
}

/* Ensure the form labels don't get centered */
.static-card .label {
  text-align: left !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .static-page-container {
    padding: 2rem 0.5rem;
  }
  
  .static-card {
    padding: 1.5rem;
  }
  
  .static-card h1 {
    font-size: 1.8rem;
  }
}
