.about-profile {
  padding: 4rem 0;
  background-color: var(--white);
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.profile-content {
  flex: 1;
}

.profile-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.profile-content p {
  color: var(--dark-gray);
  line-height: 1.7;
}

.profile-image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  order: 2;
}

.profile-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .profile-image-container {
    order: 1;
    margin: 0 auto;
  }
  
  .profile-content {
    order: 2;
  }
}

