.ep-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
  background: #ffffff;
  position: relative;
  margin: 0 auto;
  gap: 6rem;
}

.ep-hero-overlay {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  margin-bottom: 0;
}

.ep-hero-content {
  text-align: center;
}

.ep-hero-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.ep-hero-content p {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 3rem;
  line-height: 1.6;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-btn.primary {
  background: #000000;
  color: #ffffff;
  border:2px solid transparent;
  border-radius:8px;
}

.hero-btn.primary:hover {
  background: white;
  border:2px solid black;
  color:black;
}

.ep-hero-visual {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .ep-hero {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 3rem;
  }
  
  .ep-hero-overlay {
    margin-bottom: 0;
  }
  
  .ep-hero-content {
    text-align: center;
  }
  
  .ep-hero-content h1 {
    font-size: 3.6rem;
  }
  
  .ep-hero-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ep-hero {
    padding: 3rem 1.5rem;
  }
  
  .ep-hero-content h1 {
    font-size: 3rem;
  }
  
  .ep-hero-content p {
    font-size: 1.6rem;
  }
  
  .hero-btn {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
} 