.hero {
  background: var(--bg-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
  transform: rotate(-15deg);
  z-index: 0;
}

.heroContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.heroImage {
  display: flex;
  justify-content: center;
}

.heroImage img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.heroText h1 {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.heroText p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Stats Section */
.stats {
  background: var(--secondary-color);
  padding: 60px 0;
  color: var(--white);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.statsContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.statItem h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.statItem p {
  font-size: 16px;
  color: #bdc3c7;
}

/* Content Grid */
.contentGrid {
  padding: 80px 0;
}

.textImage, .textImageReverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.textImage p, .textImageReverse p {
  font-size: 24px;
  line-height: 1.5;
  color: var(--secondary-color);
  font-weight: 500;
}

.imagePlaceholder {
  background-color: #eaeaea;
  border-radius: var(--radius-lg);
  height: 400px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .heroContainer, .textImage, .textImageReverse {
    grid-template-columns: 1fr;
  }
  .statsContainer {
    grid-template-columns: 1fr;
  }
  .textImageReverse p {
    order: 2;
  }
  .textImageReverse .imagePlaceholder {
    order: 1;
  }
  .heroText h1 {
    font-size: 36px;
  }
}
