.titlecontainer .titleimage {
  filter: brightness(75%);
}

#information {
  padding-top: 100px;
}

#question-boxes {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.question {
  width: 45%;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.question:hover {
  transform: translateY(-6px);
}

.question h1 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.question p {
  font-size: 0.95rem;
  text-align: center;
}

/* Translation Style (plan) */
.translation-box {
  margin: 60px auto;
  max-width: 600px;
  text-align: center;
}

.translation-box input {
  width: 80%;
  padding: 12px;
  border: 1px solid #CCC;
  border-radius: 4px;
  margin-bottom: 10px;
}

.translation-box button {
  padding: 10px 20px;
  border: none;
  background-color: #5B3A29;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.translation-box button:hover {
  background-color: #8C5E3C;
}

/* Responsive */
@media (max-width: 900px) {

  .question {
    width: 90%;
  }

}
