.hero-section {
  padding: 40px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  color: #3A1F70;
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2e3a;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

/* Hover effect */
.hero-image img:hover {
  transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
}