body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #0c1c25 0%, #142a37 100%);
  color: white;
  font-size: 1.1rem;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
}

.text-box, .image-box {
  flex: 0 0 50vw;
  min-width: 0;
  min-height: 100vh;
  box-sizing: border-box;
}

.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5vw;
  background: none;
  position: relative;
  z-index: 2;
}

.image-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.image-box img {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    position: relative;
  }
  .image-box, .text-box {
    max-width: 100vw;
    min-width: 0;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
  }
  .image-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    justify-content: center;
    align-items: center;
  }
  .image-box img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.7;
  }
  .text-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8vw 5vw;
    color: #fff;
    text-align: center;
  }
  .text-box h1, .text-box .subtext, .text-box .contact {
    text-shadow: 0 2px 8px #000;
  }
}

.text-box {
  flex: 1 1 400px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #00c2cb;
}

.subtext {
  font-size: 1.3rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact {
  font-weight: 600;
  font-size: 1.3rem;
}

.image-box {
  flex: 1 1 300px;
  display: flex;
  justify-content: flex-end;
}

.image-box img {
  max-width: 100%;
  height: auto;
}
