 body, html {
  margin: 0 auto;
}

@media (max-width: 767px) {
	.about-us-fullscreen {
	  height: 80vh;
  }
}
@media (min-width: 768px) {
	.about-us-fullscreen {
	  height: 95vh;
  }
}

.about-us-fullscreen {
  background-image: url('https://cdn.3dbrute.com/3d-images-resize/2025/05/earth-8-crop.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.about-us-text {
	color: #c4e4f0;
	font-size: 26px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: 'Helvetica', sans-serif;
	text-shadow: -1px 1px 4px rgb(1 46 58 / 70%);
	max-width: 1600px;
	margin: 0 auto;
	white-space: pre-wrap; 
	word-wrap: break-word;
	position: relative;
	letter-spacing: 2px;
}

.about-us-text::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: white;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 767px) {
  .about-us-text {
    font-size: 20px;
    max-width: 95vw;  
  }
}

.about-us-heading {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #c4e4f0;
    font-family: Helvetica, sans-serif;
    letter-spacing: 1px;
    opacity: 0.7;
    margin: 0;
    padding: 0;
    font-size: 18px;
	letter-spacing: 2px;
}