.free-trial-reasons-section {
  padding: 80px 0;
  background-color: hsl(0 0% 96% / 0.3);
}

.free-trial-reasons-header {
  text-align: center;
  margin-bottom: 48px;
}

.free-trial-reasons-title {
  font-size: 48px;
  line-height: 1;
  color: #020b36;
  font-weight: 500;
  margin-bottom: 16px;
}

.free-trial-reasons-subtitle {
  color: #52587a;
  font-size: 20px;
  line-height: 1.625;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.free-trial-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.free-trial-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.free-trial-reason {
  border-radius: 16px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  color: #020b36;
  background-color: #fff;
  border: 1px solid #dadee7;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.free-trial-reason:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: #0282f2;
}

.free-trial-reason__icon {
  background-color: hsl(208 98% 48% / 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.free-trial-reason__icon svg {
  color: #0282f2;
  width: 24px;
  height: 24px;
}

.free-trial-reason:nth-child(even) .free-trial-reason__icon {
  background-color: hsl(158 58% 51% / 0.1);
}

.free-trial-reason:nth-child(even) .free-trial-reason__icon svg {
  color: #3acb95;
}

.free-trial-reason__title {
  color: #020b36;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
}

.free-trial-reason__text {
  font-size: 16px;
  line-height: 1.625;
  color: #52587a;
}

.free-trial-reasons-review {
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  color: #020b36;
  background-image: linear-gradient(to bottom right, hsl(208 98% 48% / 0.05), hsl(158 58% 51% / 0.05));
  background-color: #fff;
  border: 1px solid #dadee7;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.free-trial-reasons-review__text {
  color: #020b36;
  line-height: 1.625;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 24px;
}

.free-trial-reasons-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.free-trial-reasons-review__author-icon {
  background-color: hsl(208 98% 48% / 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.free-trial-reasons-review__author-icon svg {
  color: #0282f2;
  width: 24px;
  height: 24px;
}

.free-trial-reasons-review__author-name {
  color: #020b36;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.free-trial-reasons-review__author-position {
  color: #52587a;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 1023px) {
  .free-trial-reasons-title {
    font-size: 36px;
    line-height: 40px;
  }

  .free-trial-reasons-grid {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 767px) {
  .free-trial-reasons-section {
    padding: 48px 0;
  }

  .free-trial-reasons-title {
    font-size: 30px;
    line-height: 36px;
  }
}
