.languages-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.languages-section h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 600;
}

.languages-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.language-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px;
  width: 150px;
  transition: all 0.3s ease;
  cursor: default;
}

.language-card:hover {
  background: #e8e8e8;
  transform: translateY(-4px);
}

.language-card img {
  width: 60px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.language-card p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}
