body {
    background-image: url('Picture1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.logo {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 350px;
    height: auto;
}

.inquiries-logo {
    position: absolute;
    top: 70%;
    right: 10%;
    width: 350px;
    max-width: 40vw;
    min-width: 100px;
    height: auto;
}

.operating-logo {
    position: absolute;
    top: 70%;
    left: 5%;
    width: 350px;
    max-width: 40vw;
    min-width: 100px;
    height: auto;
}

.bottom-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  pointer-events: none;
}

.inquiries-html, .operating-html {
  position: static;
  pointer-events: auto;
  background: transparent;
  padding: 0;
  width: 28vw;
  max-width: 350px;
  min-width: 120px;
  z-index: 10;
}

.inquiries-html {
  color: #fff;
  font-family: 'Aptos Light', Arial, sans-serif;
  text-shadow: 1px 1px 4px #000;
  font-size: clamp(0.7em, 1.5vw, 1.5em);
  margin-right: 10vw;
}
.inquiries-title {
  font-family: 'Aptos Display', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.3em;
  white-space: nowrap;
}
.inquiries-name,
.inquiries-phone,
.inquiries-email {
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 0.2em;
  color: #fff;
}
.inquiries-phone, .inquiries-email a {
  text-decoration: none;
  color: #fff;
}

.operating-html {
  color: #CDDBFF;
  font-family: 'Aptos Light', Arial, sans-serif;
  font-size: clamp(1em, 2vw, 2.2em);
  font-style: italic;
  font-weight: 500;
  text-shadow: 1px 1px 4px #000;
  margin-left: 5vw;
}

@media (max-width: 700px) {
  .bottom-row {
    flex-direction: column;
    align-items: center;
    bottom: 2%;
  }
  .inquiries-html, .operating-html {
    width: 90vw;
    max-width: 98vw;
    min-width: 80px;
    font-size: clamp(0.6em, 2vw, 1em);
    margin: 1em 0;
  }
  .logo {
    width: 40vw;
    min-width: 80px;
  }
} 