body {

  min-height: 100vh;
  margin: 0;
  background: linear-gradient(90deg, #008C45 0%, #008C45 33.33%, #F4F5F0 33.33%, #F4F5F0 66.66%, #CD212A 66.66%, #CD212A 100%);
  font-family: 'Roboto', Arial, sans-serif;
}

.container {
  background: rgba(255,255,255,0.85);
  margin: 40px auto;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 32px 24px;
}

.branding {
  text-align: center;
  margin-bottom: 32px;
}

.branding img {
  width: 80px;
  margin-bottom: 12px;
}

.branding h1 {
  font-family: 'Forum', serif;
  font-size: 2.5rem;
  margin: 0 0 8px 0;
  color: #008C45;
}

.branding p {
  font-size: 1.1rem;
  color: #333;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.menu button {
  background: #CD212A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Roboto', Arial, sans-serif;
}

.menu button:hover {
  background: #008C45;
}

footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  text-align: center;
  padding: 16px 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}