body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(243, 213, 188, 1) 0%,
    rgba(207, 232, 233, 1) 100%
  );
}

.split-container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.left-half {
  background: url("bg.jpg") no-repeat center center;
  background-size: cover;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2rem;
}

.right-half {
  flex: 1;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #333;
}

.content-wrapper {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography */
.title-logo {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
}

.title-tagline {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
  text-align: center;
}

.right-half p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgb(59, 85, 143);
  background: linear-gradient(
    90deg,
    rgba(59, 85, 143, 1) 0%,
    rgba(180, 48, 82, 1) 100%
  );
  font-size: 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .split-container {
    flex-direction: column;
    height: auto;
  }

  .left-half {
    min-height: 50vh;
    width: 100%;
  }

  .right-half {
    width: 100%;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .title-logo {
    font-size: 3rem;
  }

  .title-tagline {
    font-size: 1.2rem;
  }

  .content-wrapper {
    padding: 0 1rem;
  }

  footer {
    position: relative;
  }
}

.btn-store {
  background-color: #b43052;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
}

.btn-store:hover {
  background-color: #912741;
}

.store-lead {
  font-weight: 700;
}
