 .faq-section {
      width: 70%;
      margin: 50px auto;
      padding: 0 20px;
    }

    .faq-section h2 {
      font-size: 32px;
      text-align: center;
      font-weight: bold;
    }

    .faq-section h2 b {
      color: #ffcc00;
    }

    .divider {
      width: 60px;
      height: 3px;
      background: #ffcc00;
      margin: 10px auto 30px auto;
    }

    .accordion {
      background: #ffcc00;
      color: #000;
      cursor: pointer;
      padding: 18px 20px;
      margin-top: 10px ;
      width: 100%;
      text-align: left;
      border: none;
      outline: none;
      font-size: 17px;
      font-weight: bold;
      position: relative;
      transition: background 0.3s ease;
    }



    .accordion:after {
      content: '\f067'; /* plus icon */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 20px;
      font-size: 18px;
      margin: 0px;
    }

    .accordion.active:after {
      content: '\f068'; /* minus icon */
    }

    .panel {
      padding: 0 20px;
      background-color: #f9f9f9;
      display: none;
      overflow: hidden;
      border: 3px solid #ffcc00;
      border-top: none;
  border-radius: 0.25rem !important;    }

    .panel p {
      margin: 15px 0;
    }