.hero {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
  width: 100%;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(108, 99, 255, 0.3));
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--gray);
}

.cta-container {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
  background-size: 200% 200%;
  animation: gradientBG 6s ease infinite;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  opacity: 1;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}