* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: "Segoe UI", sans-serif;
  }
  
  .container {
    display: flex;
    height: 100vh;
    width: 100%;
  }
  
  .left-panel {
    flex: 1;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4vw; /* Dynamic horizontal/vertical spacing */
  }
  
  .logo img {
    max-width: 60%;
    height: auto;
  }
  
  .bottom-text {
    position: absolute;
    bottom: 4vh;
    left: 4vw;
    color: #00324a;
    max-width: 90%;
  }
  
  .bottom-text p {
    font-size: 1.5vw;
    line-height: 1.4;
  }
  
  .right-panel {
    flex: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .background-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  