body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #ece9e6, #ffffff);
  color: #333;
}

.about-section {
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

h1 {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 10px;
  text-align: center;
}

.name {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #333;
}

.title {
  text-align: center;
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 30px;
}

h2 {
  color: #6a11cb;
  margin-top: 30px;
  margin-bottom: 10px;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
}

.list {
  list-style: circle;
  margin-left: 20px;
  margin-bottom: 20px;
}

.closing {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #2575fc;
}

li:hover {
  background: #f0f4ff;
  border-left: 4px solid #2575fc;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
