body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  color: #333;
}

header, footer {
  background: #56004e;
  color: white;
  text-align: center;
  padding: 1rem;
}

.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}

main {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

input, textarea, button {
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  background: #56004e;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #005fa3;
}

.button-link {
  display: block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem 0;
  background-color: #56004e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

.button-link:hover {
  background-color: #0056b3;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin: 0.5rem 0;
}

.link-list a {
  color: #56004e;
  text-decoration: none;
  font-weight: bold;
}

section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.mission {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background: #56004e;
  color: white;
  border-radius: 12px;
}

.mission p {
  margin: 0;
  padding: 2rem;
}