.title-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.title-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  animation: floatCloud 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@keyframes floatCloud {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

