/* About Section Image Styling */
.about .image {
  position: relative;
  padding: 15px;
}

.about .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 24px;
  transform: rotate(2deg);
  z-index: 0;
}

.about .image img {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.about .content h2 {
  font-size: 36px;
}
