body {
  background-color: #FFFFFF;
  font-family: sans-serif;
  text-align: center;
  padding-top: 0;
  margin: 0;
}
nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  border-bottom: 1px solid #DECDEB;
  flex-wrap: wrap;
}
nav a {
  color: #5A2D82;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
nav a:hover {
  color: #C7981E;
}
nav a.active {
  color: #C7981E;
  border-bottom: 2px solid #C7981E;
  padding-bottom: 4px;
}
h1 {
  font-family: 'Parisienne', cursive;
  color: #5A2D82;
  font-size: 4.5rem;
  display: inline-block;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-bottom: 3px solid #C7981E;
  margin-top: 40px;
}
p {
  color: #333333;
  font-size: 1.2rem;
}
.details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.detail-card {
  border: 1px solid #DECDEB;
  padding: 30px;
  width: 260px;
}
.detail-card h2 {
  color: #5A2D82;
  font-family: 'Parisienne', cursive;
  font-size: 2rem;
}
.detail-card a {
  color: #C7981E;
}
.section {
  margin-top: 40px;
  padding: 40px 20px;
}
.section h2 {
  color: #5A2D82;
  font-family: 'Parisienne', cursive;
  font-size: 2.5rem;
}
