/* FAQ specific styles v1.0 */
._ipfaq_ {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* FAQ navigation */
._ipfaqal1_ {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

._ipfaqal1_ li a {
    background: linear-gradient(135deg, #00A1F3, #0088cc);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 161, 243, 0.3);
}

._ipfaqal1_ li a:hover {
    background: linear-gradient(135deg, #0088cc, #006699);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 161, 243, 0.4);
}

/* FAQ content sections */
._ipfaqal2g_ {
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
}

._ipfaqal2t_ h2 {
    color: #00A1F3;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00A1F3;
    position: relative;
}

._ipfaqal2t_ h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0088cc;
}

/* FAQ items */
._lpfaqct1_ {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

._lpfaqct1_:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

._lpfaqct2_ {
    display: block;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

._lpfaqct2_:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #00A1F3;
}

._lpfaqct2_::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00A1F3;
    transition: transform 0.3s ease;
}

._lpfaqct1_.active ._lpfaqct2_::after {
    transform: translateY(-50%) rotate(45deg);
}

._lpfaqct3_ {
    padding: 25px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

._ipfaq_text_ {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
}

._ipfaq_boxfom_ {
    display: inline-block;
    color: #00A1F3;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #00A1F3;
    border-radius: 20px;
    transition: all 0.3s ease;
}

._ipfaq_boxfom_:hover {
    background: #00A1F3;
    color: white;
    transform: translateY(-1px);
}

/* Close panel button */
.cd-close-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #00A1F3;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
}

.cd-close-panel:hover {
    background: #0088cc;
    transform: translateY(-1px);
}

/* Search form */
._lpfaqh2_ {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

._lpfaqh2_:focus {
    outline: none;
    border-color: #00A1F3;
    box-shadow: 0 0 0 3px rgba(0, 161, 243, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    ._ipfaqal1_ {
        flex-direction: column;
        gap: 10px;
    }

    ._ipfaqal1_ li a {
        text-align: center;
        padding: 15px 20px;
    }

    ._ipfaqal2t_ h2 {
        font-size: 1.5rem;
    }

    ._lpfaqct2_ {
        padding: 15px 20px;
        font-size: 1rem;
    }

    ._lpfaqct3_ {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    ._ipfaq_ {
        padding: 10px;
    }

    ._lpfaqct2_ {
        padding: 12px 15px;
    }

    ._lpfaqct3_ {
        padding: 15px;
    }
}
