:root {
  --base-color: #000217;
  --base-color2: #00021C;
  --accent-color: #00114a;
  --white-color: #fff;
  --InputContainerColor: #0e1021;
}

html {
    height: 100%;
}

.LPC1 {
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--base-color2);
  padding-bottom: 5%;
  padding-top: 3%;
}

.LPC2 {
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--base-color);
  padding-bottom: 5%;
  padding-top: 3%;
}

.LPC3 {
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  background-color: var(--base-color2);
  padding-bottom: 5%;
  padding-top: 3%;
}

.LPH2 {
  font-size: 1rem; 
  text-align: center;
  max-width: 30%;
  padding-bottom: 1%;
}

.LPT1 {
  max-width: 30%;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.LPT2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.Features {
  width: 50%;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

.Feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 2.5% auto;
  max-width: 80%;
  color: #fff;
  border-radius: 12px;
}

.FeatureIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5%;
}

.FeatureIcon svg {
  width: 100%;
  height: 100%;
  color: var(--accent-color);
}

.FeatureContent h3 {
  margin: 0 0 10px 0;
  padding-top: 5%;
}

.FeatureContent p {
  margin: 0;
}

.FeaturesExtra {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 20px;
  max-width: 25%;
  align-items: center;
}

.FeatureIconExtra {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FeatureIconExtra svg {
  width: 100%;
  height: 100%;
  color: var(--accent-color);
}

.FeaturesExtra .FeatureContent {
  text-align: left;
  color: #fff;
}

.FeaturesExtra .FeatureContent h3 {
  margin: 0 0 10px 0;
  padding-left: 5%;
  padding-top: 0;
}

.FeaturesExtra .FeatureContent p {
  padding-left: 5%;
  margin: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .LPH2 {
    max-width: 80%;
    padding-bottom: 5%;
  }

  .LPT1 {
    max-width: 80%;
  }

  .Features {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .Feature {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .FeatureIcon {
    margin-right: 0;
    margin-top: 5%;
  }

  .Feature .FeatureContent h3 {
    text-align: center;
  }

  .Feature .FeatureContent p {
    text-align: center;
  }

  .FeaturesExtra {
    grid-template-columns: 1fr;
    max-width: 80%;
    gap: 15px;
  }

  .FeatureIconExtra {
    justify-self: center;
    margin-bottom: 10px;
    margin-top: 5%;
  }

  .FeaturesExtra .FeatureContent {
    text-align: center;
  }

  .FeaturesExtra .FeatureContent h3 {
    padding-left: 0;
    text-align: center;
  }

  .FeaturesExtra .FeatureContent p {
    padding-left: 0;
    text-align: center;
  }

  .LPC1 {
    padding-bottom: 20%;
  }

  .LPC2 {
    padding-bottom: 20%;
  }

  .LPC3 {
    padding-bottom: 20%;
  }
  
}