.vxr_about30_main_box {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 10;
}

.vxr_about30_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_about30_title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 40px;
    background: linear-gradient(135deg, #ae2cff6e, #b26bff, #db8bff75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 168, 0.3));
}

.vxr_about30_intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.vxr_about30_intro p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px;
}

.vxr_about30_intro_highlight {
    font-size: 22px;
    font-weight: 600;
    color: #9c6bff;
    margin-top: 30px !important;
}

.vxr_about30_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.vxr_about30_feature {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgb(183 107 255 / 20%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vxr_about30_feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(191 107 255 / 10%), rgb(170 61 255 / 5%));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vxr_about30_feature:hover {
    transform: translateY(-5px);
    border-color: rgb(143 52 255 / 50%);
    box-shadow: 0 15px 40px rgb(140 53 255 / 30%);
}

.vxr_about30_feature:hover::before {
    opacity: 1;
}

.vxr_about30_feature_icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vxr_about30_feature_content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.vxr_about30_feature_title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px;
    line-height: 1.3;
}

.vxr_about30_feature_text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.vxr_about30_cta {
    text-align: center;
}

.vxr_about30_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgb(191 107 255 / 50%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vxr_about30_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_about30_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(134, 107, 255, 0.7);
}

.vxr_about30_btn:hover::before {
    opacity: 1;
}

.vxr_about30_btn span,
.vxr_about30_btn i {
    position: relative;
    z-index: 1;
}

.vxr_about30_btn i {
    transition: transform 0.3s ease;
}

.vxr_about30_btn:hover i {
    transform: translateX(5px);
}

.vxr_about30_cta_text {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 25px 0 0;
    font-style: italic;
}

@media (max-width: 1024px) {
    .vxr_about30_features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vxr_about30_title {
        font-size: 42px;
    }

    .vxr_about30_intro p {
        font-size: 18px;
    }

    .vxr_about30_intro_highlight {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .vxr_about30_main_box {
        padding: 60px 0;
    }

    .vxr_about30_title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .vxr_about30_intro {
        margin-bottom: 40px;
    }

    .vxr_about30_intro p {
        font-size: 16px;
    }

    .vxr_about30_intro_highlight {
        font-size: 18px;
        margin-top: 20px !important;
    }

    .vxr_about30_features {
        gap: 25px;
        margin-bottom: 50px;
    }

    .vxr_about30_feature {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .vxr_about30_feature_icon {
        width: 70px;
        height: 70px;
    }

    .vxr_about30_feature_icon lord-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .vxr_about30_feature_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .vxr_about30_feature_text {
        font-size: 15px;
    }

    .vxr_about30_btn {
        padding: 16px 40px;
        font-size: 16px;
        gap: 12px;
    }

    .vxr_about30_cta_text {
        font-size: 16px;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .vxr_about30_features {
        grid-template-columns: 1fr;
    }
}

.vxr688FE {
    width: 80px;
    height: 80px;
}

.vxr7FD4D {
    width: 80px;
    height: 80px;
}

.vxrECB8F {
    width: 80px;
    height: 80px;
}

.vxrC01A2 {
    width: 80px;
    height: 80px;
}

.vxr42E5A {
    width: 80px;
    height: 80px;
}