body {
  background-color: #d0f0c0; /* pale mint */
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 20px;
  text-align: center;
}

header {
  background-color: #1e88e5; /* blue header */
  color: white;
  padding: 20px;
  border-radius: 8px;
}

h1 {
  margin: 0;
  font-size: 2rem;
}
/* --- Contact Form Styles --- */
form {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: left;
}

form div {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #1e88e5;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #1565c0;
}

/* --- Table Styles --- */
table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #999;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #e0f7fa;
}

tr:nth-child(even) {
  background-color: #f1f8e9;
}
