.cards-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  border-radius: 10px;
  padding: 1.1rem;
  max-width: 100%;
  width: 300px;
  background-color: #1a1a1a;
  height: auto;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.15); /* <-- ΔΙΟΡΘΩΣΗ 2 */
  border-color: #ff6b35;
}

.card h3 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color:white;
}
.card img{
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card p {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 1.65;
}
