h2.category-header {
    font-weight: 600;
      font-size: 28px !important;
      letter-spacing: 0;
  }
  .seo-qa-accordion-body {
    max-width: 800px;
    margin: 0 auto;
  }
    .seo-qa-accordion {
        width: 100%;
        margin: 15px auto;
        color: #000;
        padding: 10px 0;
        box-sizing: border-box;
    }
 
    .seo-qa-accordion > h2 {
      text-align: center;
      margin: 0 0 10px;
      font-weight: 300;
      font-size: 1.75rem;
    }

    .seo-qa-accordion .container {
      position: relative;
      padding: 0;
    }

    .seo-qa-accordion .label {
        position: relative;
        padding: 5px 40px 5px 0;
        
        cursor: pointer;
        user-select: none;
    }
    .seo-qa-accordion .label h3 {
        font-size: 16px;
        color: #000;
        font-weight: 600;
        margin-bottom: 0;
    }

    .seo-qa-accordion .label::before {
      content: '+';
      color: black;
      position: absolute;
      top: 50%;
      right: 0;
      font-size: 1.875rem;
      line-height: 1;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }

    .seo-qa-accordion .content {
      position: relative;
      background: white;
      height: 0;
      font-size: 16px;
      overflow: hidden;
      transition: height 0.5s ease;
    }

    .seo-qa-accordion .content-inner {
      padding-bottom: 10px;
    }

    .seo-qa-accordion .content p,
    .seo-qa-accordion .content ul {
      font-size: 14px;
      font-weight: 500;
      color: #4f4f4f;
    }
    .seo-qa-accordion .content ul {
      margin-bottom: 0;
    }

    .seo-qa-accordion .content p:last-child {
      margin-bottom: 0;
    }

    .seo-qa-accordion hr {
      width: 100%;
      margin-left: 0;
      border: none;
      border-top: 1px solid #ccc;
      margin-bottom: 10px;
      margin-top: 10px;
    }

    .seo-qa-accordion .container.active .label::before {
      content: '–';
    }