.title-qanda{
    margin: 0px 0px 20px 0px; 
    font-family: 'Playfair Display', serif;
    font-size: 22px; 
    font-weight: 300; 
    color: var(--title);
}
.text{
    margin: 10px 40px 0px 0px; 
    font-weight: 300; 
    font-size: 18px; 
    line-height: 28px; 
    color: var(--dark);
}

/* Q&A container (optional) */
.qa-wrap { 
  max-width: 900px; 
  margin: 0 auto; 
}
.qa-item {
    border-bottom: 1px solid rgba(0,0,0,0.10);
    padding: 14px 0;
}

/* Question */
.qa-item .title-qanda {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
}

/* Simple chevron */
.qa-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(0,0,0,0.55);
    border-bottom: 2px solid rgba(0,0,0,0.55);
    transform: rotate(45deg);
    transition: transform 250ms ease;
    flex: 0 0 auto;
    margin-left: 10px;
}
.qa-item.is-open .qa-chevron {
    transform: rotate(-135deg);
}

/* Answer (hidden by default with slide effect) */
.qa-item .text {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 320ms ease, opacity 220ms ease;
    margin: 0;              /* keep tight while collapsed */
}
/* When open, we’ll set max-height inline via JS for smooth slide */
.qa-item.is-open .text {
    opacity: 1;
    margin-top: 10px;
}
