.about-section {
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .about-section {
    padding: 3rem 0;
  }
}
.about-section .about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-section .about-image:hover img {
  transform: scale(1.02);
}
@media (min-width: 992px) {
  .about-section .about-content {
    padding-right: 2rem;
  }
}
.about-section .about-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .about-section .about-title {
    font-size: 1.875rem;
  }
}
.about-section .about-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #ff5000;
}
.about-section .about-text {
  color: #707070;
  font-size: 1rem;
  line-height: 1.6;
}
.about-section .about-text p {
  margin-bottom: 1.5rem;
}
.about-section .about-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.about-section .about-text ul li {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: none;
}
.about-section .about-text ul li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: -1.5rem;
  top: 5px;
  font-size: 0.6rem;
  color: #ff5000;
}