.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

/*.hero-content-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}*/

.hero-left h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 200;
}

.hero-right p {
  font-size: 14px;
  line-height: 1.4;
  color: #232323;
  margin: 0;
  text-align: justify;
  font-weight: 300;
}
.hero-right strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content-index {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.hero-banner-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.hero-banner {
  background-color: #f5f5f7;
  max-width: 1120px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 2.3rem;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 300;
  text-align: justify;
}

.hero-text strong {
  font-weight: 600;
}

.hero-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #333;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.hero-image img {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-image img {
     max-width: 100%;
     height: auto;
  }
}  