body {
  margin: 0;
  font-family: Arial, sans-serif;
}
header {
  background-color: #430099;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header h1 {
  margin: 0;
  font-size: 1.8rem;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}
.hero {
  text-align: center;
  padding: 50px 20px;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}
.section img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}
.section .text {
  max-width: 400px;
  font-size: 1.2rem;
}
footer {
  background-color: #430099;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  color: white;
  text-decoration: none;
}
.copyright {
  text-align: center;
  background-color: #2e0066;
  color: white;
  padding: 10px;
  font-size: 0.8rem;
}
