/* FAQ Page Styles */
.faq_hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    margin-bottom: 40px;
}

.faq_hero h1 {
    font-size: 42px;
    color: #0076FF;
    margin-bottom: 10px;
}

.faq_hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.faq_search_container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.faq_search_wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 20px;
}

.faq_search_wrapper box-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_search {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border-radius: 30px;
    border: 1px solid #333;
    background-color: #111;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.faq_search:focus {
    outline: none;
    border-color: #0076FF;
    box-shadow: 0 0 0 2px rgba(0, 118, 255, 0.2);
}

.faq_container {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.faq_categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.faq_category_button {
    background-color: #111;
    border: 1px solid #333;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.faq_category_button:hover {
    border-color: #0076FF;
}

.faq_category_button.active {
    background-color: #0076FF;
    border-color: #0076FF;
}

.faq_questions_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq_item {
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item:hover {
    border-color: #0076FF;
}

.faq_question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq_arrow {
    transition: transform 0.3s ease;
}

.faq_item.active .faq_arrow {
    transform: rotate(-180deg);
}

.faq_answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item.active .faq_answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq_answer p {
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.faq_answer a {
    color: #0076FF;
    text-decoration: none;
}

.faq_answer a:hover {
    text-decoration: underline;
}

.faq_contact {
    background-color: #111;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 0;
}

.faq_contact h2 {
    color: #0076FF;
    margin-bottom: 15px;
}

.faq_contact p {
    max-width: 500px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.faq_contact_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.faq_contact_button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #0076FF;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.faq_contact_button:hover {
    background-color: #0066dd;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq_hero h1 {
        font-size: 32px;
    }
    
    .faq_categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq_category_button {
        margin: 0;
    }
    
    .faq_contact_buttons {
        flex-direction: column;
        align-items: stretch;
    }
}