.language-box {
  text-align: center;
  margin-top: 40px;
}

.language-title {
  font-size: 30px;
  font-weight: 600;
  color: #182C51;
  margin-bottom: 20px;
}

.language-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Button base */
.lang-btn {
  width: 100%;
  padding: 12px 28px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 8px;
  background: #ffffff;
  border: 2px solid #cfd8e3;
  color: #0f2a4a;
  cursor: pointer;
  transition: all 0.25s ease;
  height: 150px;
}

/* Hover */
.lang-btn:hover {
  border-color: #0f2a4a;
  color: #ffffff;
  background: #0f2a4a;
  /* transform: translateY(-1px); */
  background: linear-gradient(135deg, #0f2a4a, #1e3a8a);
}

/* Active / selected */
.lang-btn.active {
  background: #0f2a4a;
  border-color: #0f2a4a;
  color: #ffffff;
  background: linear-gradient(135deg, #0f2a4a, #1e3a8a);

}

/* Mobile friendly */
@media (max-width: 480px) {
  .language-actions {
    flex-direction: column;
  }

  .lang-btn {
    width: 100%;
  }
}

