html {
  scroll-behavior: smooth;
}

#pricing {
  scroll-margin-top: 50px;
}

#product {
  scroll-margin-top: 150px;
}

.content-container .hero-image {
  border-radius: 15px;
  width: 100%;
  max-width: unset;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container h2:first-of-type {
  margin-top: 0;
}

.content-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  line-height: 30px;
}

.content-container p,
.content-container ul,
.content-container ul li,
.content-container ol,
.content-container ol li {
  margin-top: 20px;
  font-size: 18px;
  line-height: 30px;
}

.content-container ul li,
.content-container ol li {
  margin-top: 10px;
}

.content-container a,
.content-container a:hover {
  color: #2c61ff;
  font-weight: 500;
  text-decoration: none;
}

.content-container a:hover {
  text-decoration: underline;
}

.content-container .callout {
  background-color: #2c61ff;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.content-container .callout h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.content-container .callout a {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.content-container .callout a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.content-container pre {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  overflow-x: auto;
  text-align: left;
}

.grid-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.fade-in-slide-up {
  animation: fadeInSlideUp 0.5s ease-in-out;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .content-container h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }

  .content-container p,
  .content-container ul,
  .content-container ul li {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .content-container .callout {
    flex-direction: column;
    align-items: center;
  }

  .content-container .callout h2 {
    text-align: center;
  }
}
