@font-face {
    font-family: 'Telefonica';
    src: url('https://statics.rigel-m.com/magento/fonts/TelefonicaWeb-Regular.woff') format("woff");
}

@font-face {
    font-family: 'Telefonica-Light';
    src: url('https://statics.rigel-m.com/magento/fonts/TelefonicaWeb-Light.woff') format("woff");
}

body{
    font-family: 'Telefonica';
    color: #50535A;
    background-color: #F6F6F6;
}

.faqTitle{
    color: #0B2739;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    font-family: 'Telefonica-Light';
    font-weight: 300;
}

.faqContainer{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    max-width: 1212px;
    margin: 0 auto;
}

.faqBox{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px 30px 20px 55px;
    height: fit-content;
}

.faqBoxHeader{
    display: flex;
    gap: 12px;
}

.faqIcon{
    align-self: baseline;
}

.faqText{
    display: grid;
    width: 100%;
}

.faqQuestion{
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    align-content: center;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.faqAnswer {
    display: none;
    font-size: 14px;
    line-height: 20px;
    color: #86888C;
    padding-right: 3rem;
}

.faqAnswer.visible {
    display: block !important;
}

.faqAnswer a{
    color: #019DF4;
    text-decoration: none;
}

.arrowIcon {
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    float: right;
}

.faqBox.open .arrowIcon {
    transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
    .faqContainer{
        grid-template-columns: repeat(1, 1fr);
        max-width: 95%;
        gap: 12px;
    }
    .faqBox{
        padding: 20px 12px;
    }
    .faqIcon{
        width: 7%;
    }
    .faqQuestion{
        font-size: 14px;
        line-height: 20px;
    }
}