h4 {
  font-size: 22px;
}

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

.section {
  margin-top: 100px;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.section-header img {
  width: 60%;
}
.section-header p {
  width: 100%;
  color: #282828;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.section-detail {
  border-top: 1px solid #000;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 25px;
}
.section-detail .detail-item:first-child {
  flex: 2;
}

.detail-item h4 {
  font-size: 22px;
}
.detail-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  min-width: 270px;
}
.detail-item span,
.detail-item p {
  font-weight: 500;
}

.center-image {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 42rem;
  width: 100%;

  img {
    width: 50%;
    height: fit-content;

    &:first-child {
      width: 25%;
    }
  }
}

.cta-buttons {
  margin-top: 70px;
  justify-content: flex-end;
}
.cta-buttons .btn {
  width: 25%;
}

@media (max-width: 768px) {
  .section {
    margin-top: 100px;
  }
  .section-header {
    width: 100%;
  }
  .section-header img {
    width: 100%;
  }

  .center-image {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px 0;

    img {
      width: 100%;

      &:first-child {
        width: 50%;
      }
    }
  }

  .cta-buttons {
    justify-content: flex-start;
  }
  .cta-buttons .btn {
    width: 50%;
  }
}
