/* --- FAQ Nowoczesny styl --- */
  .faq-section {
    padding: 1rem 0 1rem;
  }



  .faq-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    margin-top:12px;
    color: #222;
    letter-spacing: -0.5px;
  }

  .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 600;
        padding: 1.6rem 1.8rem;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
	gap: 10px;
	    line-height: 140%;
  }

  .faq-question:hover {
    color: #427c02; /* niebieski akcent */
  }

  .faq-icon {
    font-weight: 700;
    font-size: 1.4rem;
    color: #427c02;
    transition: transform 0.3s ease;
  }

  .faq-question.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 0;
    color: #4a5568;
    line-height: 1.6;
    border-top: 1px solid #edf2f7;
    transition: all 0.4s ease;

    opacity: 0;
  }


  .faq-answer p,   .faq-answer li,  .faq-answer strong,  .faq-answer ul,   .faq-answer th,   .faq-answer td,   .faq-answer a{

    font-size:1.4rem;
	  line-height: 170%;
  }
  .faq-answer p{
    margin: 1rem 0;
  }

