@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

* {
	box-sizing: border-box;
}

body,
html {
	height: 100vh;
	width: 100vw;
	padding: 0;
	margin: 0;
	background: #fff;
}

.hero {
	height: 100%;
	width: 100%;
	max-width: 500px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px
}

.hero-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 20px;
  padding-top: 10px;
}

.contact-us, a, .address  {
	font-family: 'Roboto Flex', sans-serif;
	font-style: none;
  font-weight: 300;
	color: #000;
  margin: 0;
  padding: 0;
	font-size: clamp(0.8rem, 5vw, 1.5rem);
	text-wrap: nowrap;
  text-decoration: none;
  transition: color .3s ease;
}

a:hover {
  color: #4f4f4f;
  transition: color .3s ease;
}

.contact-us {
  font-weight: 500;
  margin: 0;
}

a {
  margin: 0;
}

.address {
  padding-top: 20px;
}

.image-wrapper {
  width: 50%;
  height: auto;
}

.NASAA {
  margin-top: 20px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0);
}

.seperator {
  width: 50%;
  height: 1px;
  background-color: #000;
  margin: 20px auto;
  opacity: 0.75;
}

/* Optional: Add responsive adjustment */
@media (max-width: 567px) {
  .seperator {
    width: 60%;
    margin: 15px auto
