* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  background: #000;
  scroll-behavior: smooth;
}

.hero {
  height: 100vh;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  overflow: hidden;
}

.image-logo {
  height: 58.5vh;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

.section {
  position: relative;
  margin-top: -150px;
  padding: 60px 20px 80px;
  text-align: left; /* Align text left */
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-text a {
  color: #00ccff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .hero {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center center;
    padding-left: 60px;
  }

  .image-logo {
    height: 58.5vh;
  }

  .section {
    margin-top: -200px;
  }
}
