.faqPage section.header h1 {
    font-size: 50px;
}

.faqPage section.mainContainer {
    background-repeat: unset;
}

.topicsDiv {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.topicsDiv button {
    background: var(--secondary);
    color: white;
    border-radius: 15px;
    padding: 5px 15px;
    margin-left: 15px;
    font-size: var(--smallFont);
}

.faqDiv {
    text-align: right;
}

.faqDiv h3 {
    font-size: var(--bigFont);
    font-weight: 800;
    margin: 20px 0;
}

.websitesCatalog .faqDiv h3, .prPage .faqDiv h3 {
    color: white;
}

.faqDiv .questionDiv {
    background: white;
    color: black;
    border: 1px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.questionDiv .questionHeader {
    display: flex;
    align-items: center;
    font-size: var(--largeFont);
    border-right: 15px solid var(--primary);
    padding: 10px 0;
    cursor: pointer;
}

.questionDiv.open .questionHeader {
    border-right: unset;
}

.questionDiv .openArrow i {
    color: var(--primary);
    font-size: var(--bigFont);
    vertical-align: middle;
}

.questionDiv.open .openArrow i {
    transform: rotate(270deg);
    color: white;
}

.faqDiv .questionDiv.open {
    background: var(--primary);
    color: white;
}

.questionDiv .answerDiv {
    opacity: 0;
    height: 0;
    background: white;
    color: black;
    border-radius: 15px;
    font-size: var(--mediumFont);
    transition: all 0.5s ease-in-out;
}

.questionDiv.open .answerDiv {
    opacity: 1;
    margin: 5px;
    padding: 10px;
}

@media only screen and (min-width: 1280px) {
    .faqPage section.header h1 {
        font-size: 76px;
    }
    .faqPage section.mainContainer {
        padding: 45px calc((100% - 1000px) / 2);
    }
    
}