.lp-container {
  display: flex;
  height: 100vh;
}

.lp-left {
  flex: 0 0 60%;
  padding: 5px;
  box-sizing: border-box;
  /*background-color: #f5f5f5;*/
}

.lp-right {
  flex: 0 0 40%;
  padding: 0 5px 5px 5px;
  box-sizing: border-box;
  /* background-color: #e0f0ff;*/
}

.lp-left-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  /* background-color: #e0f0ff;*/
}

.lp-bullets {
  flex: 1;
  list-style: none; /* 🔁 Important: remove default bullets */
  padding-left: 0;
  margin: 0;
}



.lp-bullets li {
  font-size: 20px; /* changes the text size */
  font-weight: 600;
}

/* Image styling */


/* Responsive for mobile */
@media (max-width: 768px) {
  .lp-container {
    flex-direction: column;
    height: auto; /* prevent squashed content on small screens */
  }

  .lp-left-inner {
    flex-direction: column;
    align-items: center;
  }

  .lp-right {
    flex: 0 0 auto;
  }
}

