
.footbg {
  background: #121921;
    padding-top: 146px;

}

.ppc-question-header h1 {
  font-size: 62px;
  color: #fff;
  opacity: 0.9;
  margin: 0;
  padding-bottom: 62px;
  text-align: center;
}

.accordion {
  border-radius: 18px;
  overflow: hidden;
}

.accordion-header {
  background-color: #121921;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
  border-bottom: 4px solid #0f3940;
}

.accordion-header.previous-active {
  border-bottom: none !important;
}

.accordion-header.active {
  background: linear-gradient(
    to bottom,
    #123d94 0%,
    #123d94 40%,
    #0d3379 70%,
    #0d3379 100%
  );
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: none;
}

.accordion-header h1 {
  margin: 0;
  font-size: 36px;
  color: #00fffc;
  font-weight: normal;
  padding: 15px 20px;
}

.accordion-header img.up {
  display: none;
}

.accordion-header.active img.down {
  transform: rotate(180deg);
}

.accordion-header.active img.up {
  display: block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
  background: linear-gradient(
    to bottom,
    #0d3379 0%,
    #0d3379 40%,
    #031e40 70%,
    #031e40 100%
  );
  color: white;
}

.accordion-content.active {
  max-height: 300px;
  padding: 0 20px 40px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.accordion-content p {
  font-size: 24px;
  margin: 0;
  color: #fff;
  padding: 0 20px;
  line-height: 150%;
}

/* Tablet Landscape - 1024px and below */
@media screen and (max-width: 1024px) {
  .ppc-question-header h1 {
    font-size: 48px;
  }

  .accordion-header h1 {
    font-size: 28px;
  }

  .accordion-content.active {
    max-height: 350px;
  }

  .accordion-content p {
    font-size: 20px;
    line-height: 150%;
  }
}

/* Tablet - 768px and below */
@media screen and (max-width: 768px) {
  .footbg {
    padding-top: 100px;
  }

  .ppc-question-header h1 {
    font-size: 36px;
    padding-bottom: 40px;
  }

  .accordion {
    border-radius: 12px;
  }

  .accordion-header {
    padding: 12px 15px;
  }

  .accordion-header.active {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .accordion-header h1 {
    font-size: 22px;
    padding: 10px 15px;
  }

  .accordion-content.active {
    max-height: 400px;
    padding: 0 15px 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .accordion-content p {
    font-size: 16px;
    padding: 0 15px;
    line-height: 150%;
  }
}

/* Mobile - 480px and below */
@media screen and (max-width: 480px) {
  .footbg {
    padding-top: 80px;
  }

  .ppc-question-header h1 {
    font-size: 28px;
    padding-bottom: 30px;
  }

  .accordion {
    border-radius: 10px;
  }

  .accordion-header {
    padding: 10px 12px;
    border-bottom: 3px solid #0f3940;
  }

  .accordion-header.active {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .accordion-header h1 {
    font-size: 18px;
    padding: 8px 12px;
  }

  .accordion-content.active {
    max-height: 450px;
    padding: 0 12px 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .accordion-content p {
    font-size: 14px;
    padding: 0 12px;
    line-height: 150%;
  }
}

/* Small Mobile - 360px and below */
@media screen and (max-width: 360px) {
  .footbg {
    padding-top: 60px;
  }

  .ppc-question-header h1 {
    font-size: 24px;
    padding-bottom: 25px;
  }

  .accordion-header h1 {
    font-size: 16px;
    padding: 6px 10px;
  }

  .accordion-content.active {
    max-height: 500px;
    padding: 0 10px 20px;
  }

  .accordion-content p {
    font-size: 13px;
    padding: 0 10px;
    line-height: 150%;
  }
}