* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
body {
  background-color: #f9f9ed;
  color: #090302;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  padding: 20px;
}

header {
  background-color: #20081f;
  color: #efe9e7;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

header nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

header h1 {
  font-size: 3.5rem;
  margin-bottom: 1px;
  margin: 0;
  font-weight: bold;
}

header p {
  font-size: 1.15rem;
  font-weight: 400;
}

header h1 .logo-link {
  text-decoration: none;
  color: #ffb3f0;
  transition: color 0.3s ease;
}

header h1 .logo-link:hover {
  color: #d2d9ef;
  text-shadow: 1px 1px 2px #090302;
}

header nav a {
  color: #20081f;
  font-weight: 500;
  transition:
    background-color 0.3s,
    transform 0.2s;
  background-color: #f4a4e7;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

header nav a:hover {
  color: #20081f;
  background-color: #d2d9ef;
  transform: translateY(-2px);
}

main {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

main section h2 {
  justify-self: center;
}

main section p {
  text-align: justify;
}

section {
  background-color: #efe9e7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #20081f;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

section h2 {
  color: #20081f;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #20081f;
}
form input[type="text"],
form input[type="date"],
form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d2d9ef;
  background-color: #f9f9ed;
  font-size: 1rem;
  outline: none;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

form input[type="date"],
form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d2d9ef;
  background-color: #f9f9ed;
  font-size: 1rem;
  outline: none;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

form input:focus,
form select:focus {
  border-color: #f4a4e7;
  box-shadow: 0 0 5px #f4a4e7;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #f4a4e7;
  color: #20081f;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
}
button:hover {
  background-color: #d2d9ef;
  transform: translateY(-2px);
}

#agenda-container {
  background-color: #d2d9ef;
  color: #20081f;
  padding: 20px;
  border-radius: 10px;
  min-height: 80px;
}

#agenda-container ul {
  list-style: disc;
  padding-left: 20px;
}

#agenda-container li {
  margin-bottom: 8px;
  font-weight: 500;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px 0;
  background-color: #20081f;
  color: #efe9e7;
  border-radius: 10px;
  font-size: 0.9rem;
  list-style: disc;
  padding-left: 20px;
}

@media (max-width: 600px) {
  header nav {
    justify-content: center;
  }
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid #f4a4e7;
  outline-offset: 2px;
}
