/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  text-align: center;
}

.hero-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 50px 30px;
  border-radius: 20px;
  max-width: 850px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  margin-top: 100px;
}

.hero-box h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-box h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 500;
  color: #ffffff;
}

.hero-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}