.section-pf {
  display: grid;
  grid-template-columns: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}

.title-pf {
  color: #0A2739;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  font-weight: 300;
  padding: 30px 0 10px;
}

.custom-container {
  width: 100%;
  padding: 0 30px;
  align-items: normal;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  margin: auto;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.custom-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.custom-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #019DF4;
  flex-grow: 1;
}

.custom-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: transform 0.3s;
}

.custom-arrow img {
  width: 100%;
  max-width: 15px;
}

.custom-description {
  display: none;
  font-size: 16px;
  line-height: 24px;
  color: #50535A;
  margin-top: 0;
  padding: 10px 0;
}

.custom-container.active .custom-description {
  display: block;
}

.custom-container.active .custom-arrow {
  transform: rotate(180deg);
}

/* Estilos para desktop */
@media (min-width: 768px) {
  .section-pf {
    grid-template-columns: 50% 50%;
  }

  .title-pf {
    font-size: 38px;
    line-height: 48px;
  }

  .custom-container {
    padding: 10px;
    align-items: flex-start;
  }

  .custom-header {
    padding: 0;
  }

  .custom-icon {
    width: 40px;
    height: 40px;
  }

  .custom-arrow {
    display: none;
  }

  .custom-description {
    display: block;
    margin-top: 10px;
  }
}
