.vxr_headerL5_main_box * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vxr_headerL5_main_box {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #2d1b69 0%, #3730a3 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.vxr_headerL5_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_headerL5_top_bar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.vxr_headerL5_top_bar .vxr_headerL5_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vxr_headerL5_logo img {
    height: 40px;
    width: auto;
}

.vxr_headerL5_navigation {
    display: none;
}

.vxr_headerL5_nav_list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.vxr_headerL5_nav_list_active {
    background: linear-gradient(135deg, #2d1b69 0%, #3730a3 50%, #2d1b69 100%);
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
}

.vxr_headerL5_nav_list_active .vxr_headerL5_nav_link {
    display: block;
    padding: 20px;
}

.vxr_headerL5_nav_link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vxr_headerL5_nav_link:hover {
    color: #60d5f5;
}

.vxr_headerL5_nav_link i {
    font-size: 10px;
    padding-left: 10px;
}

.vxr_headerL5_cta {
    display: none;
}

.vxr_headerL5_btn_primary {
    background: #60d5f5;
    color: #2d1b69;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.vxr_headerL5_btn_primary:hover {
    background: #4ec2e0;
    transform: translateY(-2px);
}

.vxr_headerL5_mobile_toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.vxr_headerL5_mobile_toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.vxr_headerL5_mobile_toggle.vxr_headerL5_active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.vxr_headerL5_mobile_toggle.vxr_headerL5_active span:nth-child(2) {
    opacity: 0;
}

.vxr_headerL5_mobile_toggle.vxr_headerL5_active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.vxr_headerL5_hero {
    padding: 60px 0 80px;
    position: relative;
}

.vxr_headerL5_hero_content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.vxr_headerL5_subtitle {
    color: #60d5f5;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.vxr_headerL5_title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.vxr_headerL5_description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vxr_headerL5_hero_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vxr_headerL5_btn_hero_primary {
    background: #60d5f5;
    color: #2d1b69;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.vxr_headerL5_btn_hero_primary:hover {
    background: #4ec2e0;
    transform: translateY(-2px);
}

.vxr_headerL5_btn_hero_secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.vxr_headerL5_btn_hero_secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.vxr_headerL5_hero_image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.vxr_headerL5_hero_image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.vxr_headerL5_shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.vxr_headerL5_shape_1 {
    width: 300px;
    height: 300px;
    background: rgba(144, 127, 219, 0.6);
    top: -50px;
    right: -30px;
}

.vxr_headerL5_shape_2 {
    width: 250px;
    height: 250px;
    background: rgba(144, 127, 219, 0.4);
    bottom: 50px;
    left: -50px;
}

.vxr_headerL5_shape_3 {
    width: 180px;
    height: 180px;
    background: rgba(96, 213, 245, 0.3);
    top: 100px;
    right: 20px;
}

.vxr_headerL5_deco {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    font-weight: 300;
    z-index: 3;
}

.vxr_headerL5_deco_1 {
    top: 50px;
    left: -20px;
}

.vxr_headerL5_deco_2 {
    bottom: 100px;
    right: 30px;
}

.vxr_headerL5_services {
    background: transparent;
    padding: 0 0 60px;
    position: relative;
    z-index: 10;
}

.vxr_headerL5_services_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.vxr_headerL5_service_card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vxr_headerL5_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vxr_headerL5_service_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #60d5f5 0%, #4ec2e0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2d1b69;
}

.vxr_headerL5_service_title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vxr_headerL5_service_text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vxr_headerL5_service_link {
    display: inline-block;
    padding: 12px 30px;
    background: #2d1b69;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vxr_headerL5_service_link:hover {
    background: #3730a3;
}

@media (min-width: 768px) {
    .vxr_headerL5_mobile_toggle {
        display: none;
    }

    .vxr_headerL5_navigation {
        display: block;
    }

    .vxr_headerL5_cta {
        display: block;
    }

    .vxr_headerL5_hero_content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .vxr_headerL5_title {
        font-size: 52px;
    }

    .vxr_headerL5_services_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .vxr_headerL5_hero {
        padding: 80px 0 100px;
    }
}

@media (min-width: 1024px) {
    .vxr_headerL5_title {
        font-size: 62px;
    }

    .vxr_headerL5_hero {
        padding: 100px 0 120px;
    }
}