body {
  margin: 0;
  background-image: url('/Assets/background.webp');
  background-size: cover;
  background-repeat: no-repeat;

  height: 100%;

  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 20%;
  padding-right: 20%;

  background-position: center;
  background-attachment: fixed;
}

h1, h2 {
  margin: 0;
  margin-bottom: 25px;

  font-family: Arial;
  text-align: center;
}

p {
  margin: 0;
  margin-bottom: 25px;

  font-family: Arial;
  text-align: center;
}

ul {
  font-family: Arial;

  padding: 0;

  margin: 0;
  margin-bottom: 25px;

  list-style-position: inside;
}

li::marker {
  color: rgb(19, 172, 255);
}

.bold {
  font-weight: bold;
}

.page-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.sidebar {
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 35px;
  padding-right: 35px;

  border-radius: 10px;

  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);

  box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.15);
}

.content {
  display: flex;
  flex-direction: column;

  align-items: center;

  flex: 1;
}

.logo {
  width: 60%;

  margin-bottom: 25px;
  margin-top: 25px;
}

.pricing-terms {
  font-style: italic;
}

.info-card-container {
  display: flex;
  flex-direction: row;

  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  margin-bottom: 25px;

  background-color: rgba(39, 179, 255, 0.5);

  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

.highlight {
  background-color: rgb(19, 172, 255);
}

.info {
  padding: 10px;
  margin-bottom: 0;
}

.button-flexbox {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  row-gap: 10px;

  width: 100%;
}

.cta-button {
  background-color: rgb(49, 172, 255);

  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  color: white;

  text-decoration: none;
  text-align: center;

  flex: 1;

  width: 100%;

  border: none;
  border-radius: 8px;

  padding-top: 16px;
  padding-bottom: 16px;

  transition: box-shadow 0.15s, transform 0.15s;
}

.cta-button:hover {
  cursor: pointer;

  transform: translateY(-3px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

a {
  color: black;
  text-decoration: none;
}

footer {
  font-family: Arial;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);

  margin-top: 25px;
}

@media (max-width: 1250px) {
  body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 500px) {
  body {
    padding: 0;
  }

  .page-wrapper {
    margin: 0;
  }

  header {
    display: flex;
    justify-content: center;
  }

  .logo {
    width: 100%;

    justify-content: center;
  }

  .sidebar {
    max-width: 100vw;
    min-height: 100vh;

    border-radius: 0;

    padding-left: 20px;
    padding-right: 20px;
  }
}