/* Secțiunea Beneficii */
.benefits {
  padding: 60px 20px;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Nunito', sans-serif;
}

.benefits h2 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff6600;
  padding-bottom: 10px;
}

.benefits p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.benefit-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.benefit-cards .card {
  background-color: #222;
  padding: 30px;
  border-radius: 10px;
  width: 240px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-cards .card i {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-cards .card h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-cards .card p {
  font-size: 1rem;
  color: #ccc;
}

.benefit-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #333;
}

.benefit-cards .card:hover i {
  transform: scale(1.1);
  color: #fff;
}



/* Responsivitate */
/* Responsivitate */
@media (max-width: 768px) {
  .benefit-cards {
    flex-direction: column; /* Aranjăm cardurile vertical pe mobil */
    gap: 30px;
  }

  .benefit-cards .card {
    width: 90%; /* Reducem lățimea cardurilor pe mobil pentru a le face mai potrivite */
    max-width: 400px; /* Lățimea maximă a cardului pentru a nu deveni prea larg */
    margin: 0 auto; /* Asigurăm că cardurile sunt centrate */
  }
}