.belief-container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 1rem;
}

/* Mobile: stack vertically, image below text */
@media (max-width: 600px) {
  .belief-container {
    flex-direction: column;
    align-items: flex-start; /* left align text and image */
  }
  .belief-container > div {
    flex: none;
    width: 100%;
  }
}

.hidden-lang { display: none !important; }