.hero {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--main-color);
}

.hero p {
  max-width: 90%;
  font-size: 14px;
  margin: 0 auto 15px;
  line-height: 1.3;
}

.about-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.feature {
  max-width: 90%;
  flex: 1;
  padding: 20px;
  margin: 0 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.feature:hover{
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature i {
  font-size: 45px;
  color: var(--main-color);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }

  .about-features {
    flex-direction: column;
  }

  .feature {
    margin: 10px 0;
  }
}
