.about-section {
  padding: 120px 0 80px;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(52, 190, 193, 0.3);
  margin-bottom: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about-points li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.about-points li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #34bec1;
  position: absolute;
  left: 0;
  top: 0;
}

.about-points a {
  color: #34bec1;
  text-decoration: none;
}

.about-points a:hover {
  text-decoration: underline;
}

.social-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-linkedin {
  background: #0077b5;
  color: white;
}

.btn-linkedin:hover {
  background: #005885;
  color: white;
}

.btn-youtube {
  background: #ff0000;
  color: white;
}

.btn-youtube:hover {
  background: #cc0000;
  color: white;
}

.btn-github {
  background: #333;
  color: white;
}

.btn-github:hover {
  background: #000;
  color: white;
}

.btn-twitter {
  background: #1da1f2;
  color: white;
}

.btn-twitter:hover {
  background: #0d8bd9;
  color: white;
}
