a {
    color: var(--gps-orange);
}

section.content {
    position: relative;
}

section.content .faq-intro {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.content .faq-intro img {
    max-width: 70%;
}

section.content .faq {
    background: white;
}

section.content .faq-search-container {
    width: 100%;
    position: sticky;
    top: 10vh;
    z-index: 4;
}

section.content .faq-search-container .faq-search {
    width: fit-content;
    height: fit-content;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
    box-shadow: var(--gps-box-shadow);
    padding: 10px 12px;
    background-color: white;
    border-radius: 30px;
}

section.content .faq-search-container .faq-search input {
    outline: none;
    border: 2px solid var(--gps-orange);
    border-radius: 30px;
    padding: 4px 6px;
    height: 22px;
}

section.content .faq-search-container .faq-search .faq-search-controlls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

section.content .faq-search-container .faq-search .faq-search-controlls button {
    background-color: var(--gps-orange);
    border: unset;
    border-radius: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
}

section.content .faq .faq-item {
    border-bottom: 2px solid #ddd;
    cursor: pointer;
    padding: 2rem 0;
    max-width: 1400px;
    margin: auto;
}

section.content .faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: color 0.3s;
}

section.content .faq .faq-item.active .faq-question {
    color: var(--gps-orange);
}

section.content .faq .faq-answer {
    display: none;
    padding-top: 0.5rem;
    font-weight: normal;
    max-width: 95%;
}

section.content .faq .faq-item.active .faq-answer {
    display: block;
}

section.content .faq .arrow {
    transition: transform 0.3s;
}

section.content .faq .faq-item.active .arrow {
    transform: rotate(180deg);
}

@media (max-width: 1600px) {
    section.content .faq-search-container {
        top: 11vh;
    }
}

@media (max-width: 1500px) {
    section.content .faq-search-container {
        top: 12vh;
    }
}

@media (max-width: 1300px) {
    section.content .faq-search-container {
        top: 13vh;
    }
}

@media (max-width: 1200px) {
    section.content .faq-intro img {
        max-width: 100%;
    }
}

@media (max-width: 777px) {
    section.content .faq-search-container {
        top: 10vh;
        margin-bottom: 50px;
    }
}