/*.logo{*/
/*    color: var(--st-patricks-blue);*/
/*}*/
  .faq {
    padding: 40px 10px;
    margin-top: 60px;
  }
  
  .section-title h2 span {
    color: var(--chrome-yellow);
    line-height: 50px;
  }

  .accordion {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--space-cadet-1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    background: var(--amaranth-purple);
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background: hsl(300, 26%, 28%);
  }
  
  .faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    background: var(--white);
    padding: 0 20px;
    font-size: 16px;
    color: var(--space-cadet-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-answer.active {
    max-height: 400px;
    padding: 15px 20px;
  }
  