
    .cbt-faq-radio-section {
      max-width: 1150px;
      margin: 0 auto;
      padding: 20px 15px;
      font-family: Arial, sans-serif;
      color: #111;
    }

    .cbt-faq-radio-title {
      margin: 0 0 24px;
      font-size: 34px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
      color: #111;
    }

    .cbt-faq-radio-item {
      margin-bottom: 10px;
      background: #f3f3f3;
      border: 1px solid #eeeeee;
      overflow: hidden;
    }

    .cbt-faq-radio-input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }

    .cbt-faq-radio-question {
      display: block;
      min-height: 72px;
      padding: 22px 56px 22px 20px;
      color: #1f1f1f;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      box-sizing: border-box;
    }

    .cbt-faq-radio-question::after {
      content: "";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #2b2b2b;
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
    }

    .cbt-faq-radio-question::before {
      content: "";
      position: absolute;
      right: 23px;
      top: 50%;
      z-index: 1;
      width: 7px;
      height: 7px;
      border-right: 3px solid #fff;
      border-bottom: 3px solid #fff;
      transform: translateY(-65%) rotate(45deg);
    }

    .cbt-faq-radio-answer {
      display: none;
      padding: 0 20px 24px;
      font-size: 16px;
      line-height: 1.7;
      color: #000;
      box-sizing: border-box;
    }

    .cbt-faq-radio-answer p {
      margin: 0;
    }

    .cbt-faq-radio-input:checked + .cbt-faq-radio-question::before {
      transform: translateY(-35%) rotate(225deg);
    }

    .cbt-faq-radio-input:checked ~ .cbt-faq-radio-answer {
      display: block;
    }

    @media (max-width: 768px) {
      .cbt-faq-radio-title {
        font-size: 28px;
      }

      .cbt-faq-radio-question {
        min-height: 64px;
        padding: 18px 48px 18px 16px;
        font-size: 18px;
      }

      .cbt-faq-radio-answer {
        padding: 0 16px 20px;
        font-size: 15px;
      }
    }
  