.profile-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0.1rem;
  }
  
  .body-text {
    flex: 1 1 60%;
    min-width: 280px;
  }
  
  .doctor-image {
    flex: 1 1 35%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .doctor-image:hover img {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .profile-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .body-text, .doctor-image {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .doctor-image {
      margin-top: 1.5rem;
    }
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    color: #555;
  }