 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

  html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.MainContainer {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: row;
}

 .LeftPane {
  position: relative;
  flex: 0 0 60%;
  background-image: url('../images/main-bg2.png');
  background-size: cover;
  background-position: center;
}

    .RightPane {
      flex: 0 0 40%;
      background-color: #042D57;
      color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 4vw;
      box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
        min-height: 100vh;
  height: auto;
    }


    .RightPane h1 {
      font-size: 2.7rem;
      color: #00C3FF;
      margin-bottom: 1rem;
    }

    .RightPane p {
      font-size: 1rem;
      line-height: 1.5;
      max-width: 500px;
    }

    .company-info {
      margin-top: 2rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    .contact-info {
      margin-top: 1.5rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    .contact-info a {
      color: #00C3FF;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .bank-info {
      margin-top: 2rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .bank-info span {
      color: #ffffff;
      font-weight: 500;
    }

    .bank-info em {
      font-size: 0.85rem;
      color: #cccccc;
    }

.section-divider {
  width: 100%;
  height: 2px;
  background-color: #00C3FF;
  margin: 20px 0 20px 0;
  opacity: 0.9;
  border-radius: 1px;
  align-self: stretch; /* 🚀 ključno da se protegne unutar Flex kontejnere */
}

.sub-heading {
  font-size: 1.35rem; /* 50% manji od h1 (2.7rem) */
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}


.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.client-box {
  background-color: #ffffff;
  width: 150px;
  height: 60px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.client-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}




.left-footer-desktop {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 0.85rem;
  text-align: left;
  padding: 7px;
}

 .left-footer {
    display: none; /* sakrij na mobitelima */
  }

.left-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  text-shadow: 8px 1px 8px rgba(0, 0, 0, 0.9);
  max-width: 90%;
  min-width: 90%;
}


    @media (max-width: 768px) {
      .MainContainer {
        flex-direction: column;
        height: auto;
      }

      .LeftPane {
        flex: none;
        width: 100%;
        height: 40vh;
      }

      .RightPane {
        flex: none;
        width: 100%;
        height: auto;
        padding: 6vw;
        align-items: flex-start;
        text-align: left;
      }
      .client-logos {
    justify-content: center;
  }

    .RightPane h1 {
      font-size: 1.5rem;
      color: #00C3FF;
      margin-bottom: 1rem;
    }

.left-footer {

  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 0.85rem;
  text-align: center; /* ✅ koristi samo ovo */
  padding: 7px;
  display: block;
}


   .left-footer-desktop {
    display: none; /* sakrij na mobitelima */
  }

  .left-overlay-text {
    font-size: 1.2rem;
    padding: 0 10px;
    min-width: 90%;
  }
      .RightPane p {
      font-size: 0.85rem;
      line-height: 1.3;
      max-width: 500px;
    }

        .company-info, .bank-info, .contact-info {
      margin-top: 2rem;
      font-size: 0.85rem;
      line-height: 1.3;
    }

     .bank-info em {
      font-size: 0.65rem;
      color: #cccccc;
    }

    }