.vxr_faq77_main_box {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0d1829 100%);
    position: relative;
    overflow: hidden;
}

.vxr_faq77_main_box::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vxr_faq77_main_box::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(50, 168, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.vxr_faq77_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.vxr_faq77_header {
    text-align: center;
    margin-bottom: 60px;
}

.vxr_faq77_title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.vxr_faq77_subtitle {
    font-size: 18px;
    color: #b8e4f0;
    margin: 0;
    line-height: 1.6;
}

.vxr_faq77_content {
    max-width: 100%;
}

.vxr_faq77_accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.vxr_faq77_item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.vxr_faq77_item:hover {
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.25);
}

.vxr_faq77_item.active {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 35px rgba(50, 168, 214, 0.3);
    border-color: rgba(0, 217, 255, 0.35);
}

.vxr_faq77_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    gap: 20px;
    transition: background 0.3s ease;
}

.vxr_faq77_question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.vxr_faq77_item.active .vxr_faq77_question {
    background: rgba(0, 217, 255, 0.05);
}

.vxr_faq77_question_text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.vxr_faq77_icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #32A8D6 0%, #0546A4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.vxr_faq77_icon i {
    font-size: 14px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.vxr_faq77_item.active .vxr_faq77_icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #0546A4 0%, #32A8D6 100%);
}

.vxr_faq77_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.vxr_faq77_item.active .vxr_faq77_answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.vxr_faq77_answer p {
    font-size: 16px;
    color: #8a9fb6;
    line-height: 1.7;
    margin: 0;
}

.vxr_faq77_cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.vxr_faq77_cta_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #32A8D6 0%, #0546A4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vxr_faq77_cta_icon i {
    font-size: 32px;
    color: #ffffff;
}

.vxr_faq77_cta_content {
    flex: 1;
}

.vxr_faq77_cta_title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.vxr_faq77_cta_text {
    font-size: 15px;
    color: #b8e4f0;
    margin: 0;
    line-height: 1.6;
}

.vxr_faq77_cta_button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #32A8D6 0%, #0546A4 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.vxr_faq77_cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 168, 214, 0.4);
}

@media (max-width: 768px) {
    .vxr_faq77_main_box {
        padding: 60px 0;
    }

    .vxr_faq77_container {
        padding: 0 16px;
    }

    .vxr_faq77_header {
        margin-bottom: 40px;
    }

    .vxr_faq77_title {
        font-size: 32px;
    }

    .vxr_faq77_subtitle {
        font-size: 16px;
    }

    .vxr_faq77_accordion {
        gap: 12px;
        margin-bottom: 40px;
    }

    .vxr_faq77_question {
        padding: 20px 18px;
        gap: 15px;
    }

    .vxr_faq77_question_text {
        font-size: 16px;
    }

    .vxr_faq77_icon {
        width: 28px;
        height: 28px;
    }

    .vxr_faq77_icon i {
        font-size: 12px;
    }

    .vxr_faq77_item.active .vxr_faq77_answer {
        padding: 0 18px 20px;
    }

    .vxr_faq77_answer p {
        font-size: 15px;
    }

    .vxr_faq77_cta {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
        gap: 20px;
    }

    .vxr_faq77_cta_icon {
        width: 60px;
        height: 60px;
    }

    .vxr_faq77_cta_icon i {
        font-size: 28px;
    }

    .vxr_faq77_cta_title {
        font-size: 22px;
    }

    .vxr_faq77_cta_text {
        font-size: 14px;
    }

    .vxr_faq77_cta_button {
        width: 100%;
        text-align: center;
    }
}