/* Hero Section Styles */
.hero {
  background: url("../../../img/02.png") no-repeat center center/cover;
  background-attachment: fixed;
  color: #555;
  text-align: center;
  padding: 100px 0px 10px 0px;
}

.hero-content {
  margin: 0 auto;
  margin-top: 70vh;
  background-color: #f3f3f3;
  max-width: 90vw;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 3rem 3rem;
  text-align: left;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.hero-content h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
  padding-left: 12px;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555;
  font-weight: 400;
}

.hero-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 18px;
}

.hero-content ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 6px;
  color: #555;
}

.hero-content ul li strong {
  color: #333;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    padding: 80px 0px 10px 0px;
  }

  .hero-content {
    margin-top: 50vh;
    max-width: 95vw;
    padding: 1.5rem 1.2rem 2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .hero-content h2 {
    font-size: 1.3rem;
    margin-top: 25px;
  }

  .hero-content p,
  .hero-content ul li {
    font-size: 0.95rem;
  }
}
