/* About Section Styles */
.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-image-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.about-profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-profile-image {
    width: 150px;
    height: 150px;
  }

  .about-content {
    font-size: 1rem;
  }
}
