.about-container {
  max-width: 1200px;
  margin: 100px auto 150px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 0 10px rgba(106, 17, 203, 0.8);
}

.about-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-section {
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
}

.about-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.about-section ul {
  list-style-type: none;
  padding-left: 0;
}

.about-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.about-section ul li::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: rgba(106, 17, 203, 0.8);
}

.about-image {
  text-align: center;
  margin-bottom: 30px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.contact-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: rgba(106, 17, 203, 0.8);
  width: 20px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.skill-tag {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.3),
    rgba(37, 117, 252, 0.3)
  );
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.avatar {
  text-align: center;
  margin-bottom: 20px;
}

.avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.5);
  transition: transform 0.3s ease;
}

.avatar img:hover {
  transform: scale(1.1);
}
