body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0a1324;
}

.perfil {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background: #9c5ca9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar {
  width: 30%;
  background-color: #57508d;
  color: #0b0b0c;
  padding: 30px;
  text-align: center;
}

.foto-sidebar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
}

.sidebar h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.frase-sidebar {
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.contacto h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.contacto p {
  font-size: 14px;
  margin: 5px 0;
}

.contenido {
  width: 70%;
  padding: 30px 40px;
}

.contenido section {
  margin-bottom: 25px;
}

.contenido h3 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #333;
}

.contenido ul {
  margin: 0;
  padding-left: 20px;
}

.contenido ul li {
  margin: 5px 0;
  line-height: 1.5;
}

.dual-list {
  display: flex;
  justify-content: space-between;
}

.dual-list div {
  width: 48%;
}

.dual-list ul {
  margin: 0;
  padding-left: 18px;
}