.about {
  padding: 50px 0;
  text-align: center;
}

.about-me {
  display: flex;
  align-items: center;
  gap: 100px;
}

.about h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about hr {
  width: 50px;
  height: 2px;
  background-color: gold;
  border: none;
  margin: 20px auto;
}

.about-me p {
  font-size: 20px;
  margin-bottom: 30px;
}

.about img {
  width: 700px;
  height: 800px;
  border: 3px solid gold;
  border-radius: 12px;
}

.skills {
  margin-bottom: 30px;
}

.skill-item {
  margin-bottom: 10px;
  margin-left: 50px;
  margin-right: 50px;
  text-align: left;
}

.skill-item span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.progress-bar {
  background-color: #333;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  background-color: gold;
  height: 100%;
}

ul {
  margin-top: 20px;
  list-style: none;
}

/* Media Query for mobile screens */
@media (max-width: 768px) {
  .about-me {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-me-pic {
    max-width: 100%;
    height: auto;
    width: 90%;
    border-radius: 12px;
  }

  .about h1 {
    font-size: 28px;
  }

  .about-me p {
    font-size: 16px;
    padding: 0 20px;
  }

  .skills {
    padding: 0 20px;
  }

  .skill-item {
    margin-left: 0;
    margin-right: 0;
  }

}
