.about-us {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: backgroundShift 30s linear infinite;
}

.about-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 40px;
  max-width: 960px;
  width: 100%;
  text-align: center;
  color: white;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

/* Adaptability */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-overlay {
    padding: 40px 20px;
  }
}

/* Moving effect */
@keyframes backgroundShift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    transform: scale(1.05) translateY(0);
  }
}