 .faq-section {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 70px;
    }

    .faq-section h2 {
      font-size: 1.8rem;
      margin-bottom: 28px;
      color: #222;
      letter-spacing: 0.4px;
    }

    /* Container using flex so each item keeps its own height */
  .faq-container {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

    .faq-item {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(20,20,20,0.06);
      flex: 0 1 calc(50% - 10px); /* 2 columns */
      overflow: visible; /* allow answers to expand inside the item without affecting siblings */
      border: 1px solid rgba(0,0,0,0.04);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 18px 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 1rem;
      color: #111;
      border-radius: 10px;
      outline: none;
    }

    .faq-question:hover {
      background: rgba(0,0,0,0.02);
    }

    .faq-question:focus {
      box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.18);
    }

    .arrow-icon {
      display:inline-block;
      transition: transform 320ms cubic-bezier(.2,.9,.2,1);
      color: #666;
      font-size: 1.05rem;
      margin-left: 12px;
    }

    .faq-question.active .arrow-icon {
      transform: rotate(180deg);
      color: #4CAF50;
    }

    /* Answer: animate via max-height, padding toggled via JS for smooth collapse */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* left/right padding constant */
      transition: max-height 340ms cubic-bezier(.2,.9,.2,1);
      border-top: 1px solid rgba(0,0,0,0.04);
    }

    .faq-answer p {
      margin: 0;
      color: #444;
      line-height: 1.6;
      font-size: 0.96rem;
    }

    /* small spacing inside the paragraph when opened (we adjust top/bottom via JS) */
    .faq-answer .inner {
      padding-top: 0;
      padding-bottom: 0;
    }
    .showcase::before, .showcase::after {
    content: '';
    position: absolute;
    height: 60px;
    bottom: -34px;
    right: 0;
    left: 0;
    background: #fff;
    transform: skewY(-3deg);
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
}
.stats {
    padding-top: 50px;
}