/* Hero sections for inner pages */
.inner-page-hero {
  background: linear-gradient(140deg, #1A535C, #4ECDC4);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.inner-page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.inner-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Straight line at the bottom instead of wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--light-color);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .inner-page-hero h1 {
    font-size: 2rem;
  }
  
  .inner-page-hero p {
    font-size: 1rem;
  }
}