/* Hero 1: Text left, Image right, Light background */
.hero1 {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 40px;
  background-color: var(--main-bg);
}

.hero1-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero1-content {
  flex: 1;
  max-width: 600px;
}

.hero1-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

.hero1-subtitle {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.hero1-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero1-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 450px;
}

@media (max-width: 768px) {
  .hero1 {
    height: auto;
    min-height: 500px;
    padding: 100px 20px 40px;
  }

  .hero1-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero1-content {
    max-width: 100%;
  }

  .hero1-title {
    font-size: 36px;
  }

  .hero1-subtitle {
    font-size: 20px;
  }

  .hero1-image {
    max-width: 100%;
  }

  .hero1-image img {
    max-height: 300px;
  }
}
