/* Global resets and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #f4f4f9; /* Light pastel background from Figma */
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Styles */
header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

header h1 {
  font-size: 3.5rem;
  font-family: Garamond, sans-serif;
  color: #d82d1d; /* Subtle purple/blue from the design */
  text-shadow: 3px 3px 5px black;
}

.urgent-message {
  margin-top: 10px;
  color: black; /* Deep red for urgency */
  font-weight: bold;
}

/* Main Content */
main {
  flex: 1;
  padding: 40px 20px;
  width: 100%;
  max-width: 900px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ccc;
  background-color: #fff;
  width: 100%;
}

.footer-note {
  color: #666;
  font-size: smaller;
}

/* Common link styles */
a {
  color: #d9534f;
}

a:hover {
  color: blue;
}

/* Common utility classes */
.hidden {
  display: none;
}
