.accordionHeader {
    display:flex; 
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 8px;
    cursor: pointer;
}

.accordionHeader:hover{
    background-color: azure;
}


.accordionHeader p, 
.accordionText span, 
#CTA .accordionHeader p,
#CTA .accordionHeader span
{
    font-family: var(--label);
    font-size: var(--bodyFontSize);
    line-height: 1.46;
    letter-spacing: 0.88px;
    font-weight: bold;
    font-style: normal;
}

.accordionText { 
    font-family: var(--body);
    font-size: var(--bodyFontSize);
    line-height: 1.57; 
    letter-spacing: 1.28px; 
    font-style: italic;
    text-transform: capitalize; 
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0; 
    width: 100%; 
    box-sizing: border-box;
}

.accordionText.open {
    max-height: 1000px; /* Adjust based on content */
}

.accordionText span {
    font-size: 14px;
}

.accordionText, 
#CTA .accordionText
{ 
    font-size: 13px; /* Smaller font size */
    letter-spacing: 0.64px; /* Reduced letter spacing */
    line-height: 1.4; /* Adjusted line height */
    text-align: justify; /* Justify text alignment */
}
