.page-body {
  display: flex;
  gap: 24px;
}
.page-body .page-body-column:nth-child(1) {
  width: 360px;
}
.page-body .page-body-column:nth-child(1) .section-layout {
  padding: 30px;
}
.page-body .page-body-column:nth-child(2) {
  width: calc(100% - 360px - 24px);
}

.section-sticky {
  position: sticky;
  top: 100px;
}

.section-layout {
  padding: 48px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
}

.main-content * {
  font-family: inherit !important;
  max-width: 100% !important;
  white-space: normal !important;
  font-family: inherit !important;
}
.main-content img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-content p:last-child {
  margin-bottom: 0;
}
.main-content h1 {
  font-size: 2.25rem;
}
.main-content h2 {
  font-size: 1.875rem;
}
.main-content h3 {
  font-size: 1.25rem;
}

.section-info .info-item {
  width: calc(50% - 8px);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.form-layout .col-span-full {
  grid-column: span 3;
}
.form-layout .btn-submit {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 12px;
  background-color: #2D52A0;
  color: #fff;
  transition: 0.15s ease-in-out;
}
.form-layout .btn-submit:hover {
  background: #203A72;
}

@media (max-width: 1024px) {
  .page-body {
    flex-wrap: wrap;
    gap: 0;
  }
  .page-layout {
    flex-wrap: wrap;
  }
  .page-body-column {
    width: 100% !important;
  }
  .section-layout {
    padding: 16px 10px;
  }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .form-layout .col-span-full {
    grid-column: span 1;
  }
  .section-layout {
    padding: 20px;
  }
  .page-body .page-body-column:nth-child(1) .section-layout {
    padding: 20px;
  }
  .form-layout .col-span-full {
    flex-wrap: wrap;
  }
}
