.problems {
  padding: 60px 20px;
  background: #33368a;
  text-align: center;
}

.problems h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #ffffff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.brands {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.brands h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #33368a;
  padding: 20px;
  width: 200px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: #FFCC80;
}
.card {
  background: #33368a;
  padding: 20px;
  width: 180px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}