.astoundServicesFAQ{
    background-color: black;
    color: white;
    padding: 100px 50px;
    font-family: var(--astound-h4-font-family);
}


.accordion-content {
    display: none;
    padding: 15px 0;
    border-top: none;
}

.accordion-toggle {
    cursor: pointer;
    border-bottom: none;
    margin-top: 5px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.toggle-icon{
    background-image: url('../../images/ui/buttonArrow-white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 21px;
    margin-left: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.toggle-icon.active{
    transform: rotateZ(180deg);
}


.servicesHeader{
    background-color: black;
    position: absolute;
    bottom: 0;
    right: 0;
    color: white;
    text-align: right;
    max-width: 30%;
    padding: 40px;
}



@media (max-width: 576px) {

    .accordion-toggle {
        font-size: 22px;
    }

    .servicesHeader{
        max-width: 60%;
    }
}


@media (min-width: 768px) {
    
    .accordion-toggle {
        font-size: 18px;
    }

    .servicesHeader{
        max-width: 60%;
    }
}
